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

:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #ed8936;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--primary);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
}

.header-top a {
    color: var(--bg-white);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 36px;
}

.nav-main a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-main a:hover::after {
    width: 100%;
}

.ad-disclosure {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    margin-left: 12px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--bg-white);
    padding: 80px 0;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #dd6b20;
    color: var(--bg-white);
}

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

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

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

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

section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--bg-white);
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.intro-block {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
}

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

.service-item {
    display: flex;
    gap: 40px;
    padding: 48px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.service-image {
    flex: 0 0 280px;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex: 1;
}

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

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--border);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 100px 0;
}

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

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--bg-white);
}

.page-header {
    background: var(--primary);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 20px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-content ul,
.page-content ol {
    margin: 0 0 24px 24px;
    color: var(--text-light);
}

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

.about-vision {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-vision-text {
    flex: 1;
}

.about-vision-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-vision-text p {
    font-size: 17px;
}

.about-vision-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    background: var(--bg-white);
    padding: 40px 24px;
    border-radius: 12px;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background-color: var(--border);
    overflow: hidden;
}

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

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card .role {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.contact-detail-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.contact-map {
    flex: 1;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.form-container {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    margin-top: 60px;
}

.form-container h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
}

.thanks-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-text a {
    color: var(--accent);
}

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

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

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

.cookie-accept:hover {
    background: #dd6b20;
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
}

.cookie-reject:hover {
    border-color: var(--bg-white);
}

.disclaimer {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .nav-main {
        gap: 24px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .intro-block {
        flex-direction: column;
        gap: 48px;
    }

    .service-item {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        width: 100%;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 200px;
    }

    .about-vision {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 16px;
    }

    .nav-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 34px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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