* {
    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-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #495057;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.cta-text {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s;
}

.cta-text:hover {
    color: #2980b9;
}

.intro-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.services-cards {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.services-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 56px;
    color: #1a252f;
}

.cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a252f;
}

.service-card p {
    margin: 0 24px 16px;
    color: #495057;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2ecc71;
    margin: 0 24px 16px;
}

.service-card .cta-secondary {
    margin: 0 24px 24px;
    text-align: center;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto 0;
    background-color: #f8f9fa;
}

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

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

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

.benefit-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #495057;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.approach-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-banner {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 32px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.cta-banner h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-banner .cta-primary {
    background-color: #ffffff;
    color: #667eea;
}

.cta-banner .cta-primary:hover {
    background-color: #f8f9fa;
}

.form-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 24px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a252f;
}

#mainForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#mainForm label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

#mainForm input,
#mainForm select,
#mainForm textarea {
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#mainForm input:focus,
#mainForm select:focus,
#mainForm textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 24px 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 12px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

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

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

.btn-accept:hover {
    background-color: #27ae60;
}

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

.btn-reject:hover {
    background-color: #34495e;
}

.page-header {
    text-align: center;
    padding: 80px 24px 60px;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-header p {
    font-size: 20px;
    color: #495057;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 24px;
    align-items: center;
}

.service-detail-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 24px;
    align-items: center;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.detail-content h3 {
    font-size: 24px;
    margin: 28px 0 16px;
    color: #2c3e50;
}

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

.detail-content ul {
    margin: 20px 0 24px 24px;
    color: #495057;
}

.detail-content ul li {
    margin-bottom: 10px;
}

.detail-image {
    flex: 1;
    background-color: #e9ecef;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.pricing-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background-color: #f8f9fa;
    border-left: 4px solid #2ecc71;
    margin: 16px 0;
    border-radius: 4px;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
}

.service-full {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.full-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a252f;
}

.full-content p {
    font-size: 17px;
    margin-bottom: 40px;
    text-align: center;
    color: #495057;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intensive-modules {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.module-item {
    flex: 1;
    min-width: 240px;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

.module-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.module-item p {
    font-size: 15px;
    color: #495057;
}

.pricing-box-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin: 40px 0;
    color: #ffffff;
}

.pricing-box-center .price-label {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

.pricing-box-center .price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.service-full .cta-primary {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.additional-service {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 24px;
    background-color: #f8f9fa;
}

.additional-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.additional-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.additional-item p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
}

.additional-item .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2ecc71;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 24px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.philosophy-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 24px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #e9ecef;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.philosophy-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.experience-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.experience-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

.experience-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.experience-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.experience-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.experience-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.approach-detail {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
}

.approach-container h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

.approach-split-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
}

.approach-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.approach-right {
    flex: 1;
}

.approach-right h3 {
    font-size: 24px;
    margin: 0 0 12px 0;
    color: #1a252f;
}

.approach-right p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #495057;
    line-height: 1.7;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px 24px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.cta-about {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 32px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-about .cta-primary {
    background-color: #ffffff;
    color: #667eea;
}

.cta-about .cta-primary:hover {
    background-color: #f8f9fa;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

.info-block {
    margin-bottom: 36px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.contact-notes {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-notes h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-notes p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.7;
}

.contact-notes a {
    color: #3498db;
    text-decoration: underline;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2ecc71;
}

.thanks-container > p {
    font-size: 20px;
    margin-bottom: 48px;
    color: #495057;
}

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

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #2ecc71;
    border-radius: 4px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 24px 28px;
    color: #495057;
}

.legal-page ul li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-reverse,
    .approach-split,
    .service-detail-split,
    .service-detail-reverse,
    .about-split,
    .philosophy-reverse,
    .contact-container,
    .approach-split-content {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .approach-text {
        padding: 40px 24px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .cards-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}