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

:root {
    --primary: #1a3a5c;
    --secondary: #2d6a9f;
    --accent: #d4a853;
    --dark: #0f1c2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --border: #e0e4e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    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-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary);
    padding: 8px 0;
}

.ad-disclosure {
    color: var(--white);
    font-size: 12px;
    text-align: center;
    opacity: 0.9;
}

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

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

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    padding: 120px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-image img {
    width: 100%;
    height: 480px;
    display: block;
}

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

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

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

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

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

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

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

section {
    padding: 100px 0;
}

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

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

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

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    background-color: var(--border);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

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

.about-section {
    background-color: var(--light);
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 420px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 16px;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-section {
    background-color: var(--primary);
    padding: 80px 0;
}

.trust-content {
    text-align: center;
    color: var(--white);
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

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

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

.testimonial-card {
    flex: 1 1 340px;
    max-width: 400px;
    background-color: var(--light);
    padding: 36px;
    border-radius: 8px;
}

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

.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%;
}

.author-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

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

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 32px;
}

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

.cta-content .btn:hover {
    background-color: var(--dark);
}

.contact-section {
    background-color: var(--light);
}

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

.contact-info {
    flex: 1;
}

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

.contact-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item-text h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

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

.contact-form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--dark);
    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(--secondary);
}

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

.form-submit {
    width: 100%;
}

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 64px 0 24px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.disclaimer {
    background-color: #0a1520;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.8;
}

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

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

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

.content-section h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 40px;
}

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

.content-section p {
    color: var(--gray);
    margin-bottom: 16px;
}

.content-section ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-section li {
    color: var(--gray);
    margin-bottom: 8px;
    list-style: disc;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-row {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background-color: var(--light);
    border-radius: 8px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
    background-color: var(--white);
    border: 1px solid var(--border);
}

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

.service-row-image img {
    width: 100%;
    height: 100%;
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-row-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-row-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-row-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
}

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

.contact-page-info {
    flex: 1;
}

.contact-page-info h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-card {
    background-color: var(--light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

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

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: var(--white);
    font-size: 14px;
}

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

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

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

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

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

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 48px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
        gap: 48px;
    }

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

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

    .service-row:nth-child(even) {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 24px;
        border-top: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        padding: 80px 0;
    }

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

    section {
        padding: 64px 0;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

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

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

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