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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #2c5aa0;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #234a85;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background: #e8f1f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-section {
    background: #f8f9fa;
    padding: 80px 40px;
}

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

.intro-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 28px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-overview {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8f1f8;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 16px;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-us-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

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

.split-image {
    flex: 1;
    background: #34495e;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.text-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #3a7bc8;
}

.process-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.cta-wrapper h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button-alt {
    display: inline-block;
    background: #ffffff;
    color: #2c5aa0;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background: #ffffff;
    margin: 80px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    color: #b2bec3;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

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

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 22px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 40px;
}

.about-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
}

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.member-photo {
    background: #e8f1f8;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 24px 24px 8px;
}

.member-role {
    font-size: 16px;
    color: #2c5aa0;
    font-weight: 600;
    margin: 0 24px 16px;
}

.team-member p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 24px;
    line-height: 1.6;
}

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

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

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

.value-item h3 {
    font-size: 24px;
    color: #2c5aa0;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.6;
}

.experience-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
}

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

.price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 28px 0;
}

.detail-image {
    flex: 1;
    background: #e8f1f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.pricing-info {
    background: #f8f9fa;
    padding: 80px 40px;
}

.pricing-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 28px;
}

.pricing-info p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.pricing-factors {
    list-style: none;
    margin: 32px 0;
}

.pricing-factors li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.pricing-factors li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 24px;
}

.contact-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-note p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background: #e8f1f8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-section h2 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-wrapper h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.service-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.selected-service {
    font-size: 18px;
    color: #2c3e50;
}

.next-steps {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.text-link-large {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.text-link-large:hover {
    color: #234a85;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.update-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c5aa0;
    margin-top: 28px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #234a85;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

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

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

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

    .content-split {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }

    .detail-content h2 {
        font-size: 28px;
    }

    .thanks-wrapper h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}