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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.hero-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 48px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #e5e7eb;
}

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

.cta-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-description {
    margin-bottom: 20px;
}

.service-description p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-description ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.service-description ul li {
    margin-bottom: 6px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-btn:hover {
    background: var(--primary-dark);
}

.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-header p {
    color: var(--text-secondary);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.info-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.info-card {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    color: #9ca3af;
    margin-bottom: 12px;
}

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

.footer-column a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    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: 14px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

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

.content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.content-card-split {
    display: flex;
    gap: 48px;
    align-items: center;
}

.content-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #e5e7eb;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.content-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

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

.team-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.team-info p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 64px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.services-detail-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #e5e7eb;
}

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

.service-detail-content {
    flex: 1;
    padding: 48px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-features {
    margin-left: 20px;
    margin-bottom: 32px;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-action-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-action-btn:hover {
    background: var(--primary-dark);
}

.additional-services {
    padding: 80px 0;
    background: var(--bg-white);
}

.additional-services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.addon-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.addon-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.addon-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.addon-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.opening-note {
    margin-top: 12px;
    font-size: 14px;
}

.no-link {
    color: var(--text-secondary);
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-approach {
    padding: 80px 0;
    background: var(--bg-light);
}

.approach-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.approach-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 64px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.selected-service {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-info {
    color: var(--text-primary);
    font-size: 16px;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 64px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.legal-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-card ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-card {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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

    .form-card {
        padding: 32px 24px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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

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

    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

    .service-detail-content {
        padding: 32px 24px;
    }

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

    .thanks-card {
        padding: 40px 24px;
    }

    .thanks-card h1 {
        font-size: 28px;
    }

    .legal-card {
        padding: 40px 24px;
    }

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