* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234a2f;
}

.intro-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.services-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
}

.select-service {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-service:hover {
    background-color: #234a2f;
}

.trust-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

.trust-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.trust-points {
    list-style: none;
    margin-top: 24px;
}

.trust-points li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 18px;
}

.trust-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-intro p {
    font-size: 16px;
    color: #6c757d;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #234a2f;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a2f;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: #a0c4ff;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3a28 100%);
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
    gap: 0;
}

.about-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.methodology-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-container h2 {
    font-size: 42px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.method-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.method-item h3 {
    font-size: 24px;
    color: #2d5a3d;
    margin-bottom: 12px;
    font-weight: 600;
}

.method-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.values-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.values-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-top: 24px;
}

.values-list li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 18px;
}

.commitment-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

.commitment-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 80px 40px;
}

.service-detail {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto 80px;
    gap: 0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    color: #2d5a3d;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 20px;
}

.btn-enroll {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
    margin-top: 12px;
}

.btn-enroll:hover {
    background-color: #234a2f;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-cta {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3a28 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 80px auto;
}

.contact-info {
    flex: 1;
    padding: 60px 70px;
}

.contact-info h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 42px;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2d5a3d;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid #2d5a3d;
}

.thanks-details p {
    font-size: 16px;
    color: #2d5a3d;
    font-weight: 600;
}

.thanks-next {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding-left: 32px;
    margin-bottom: 14px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-next ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a2f;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.next-steps-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.next-steps-content {
    max-width: 900px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.next-steps-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page {
    padding: 60px 40px 100px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: #2d5a3d;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .about-split,
    .values-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .trust-content,
    .about-content,
    .values-content,
    .service-detail-content,
    .contact-info {
        padding: 50px 40px;
    }

    .hero-visual,
    .intro-image,
    .trust-visual,
    .about-image,
    .values-image,
    .service-detail-image,
    .contact-map {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .method-item,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 40px;
        border-bottom: 1px solid #e9ecef;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-header h2,
    .methodology-container h2,
    .faq-container h2 {
        font-size: 32px;
    }

    .intro-text h2,
    .trust-content h2,
    .about-content h2,
    .values-content h2 {
        font-size: 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}