:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --dark: #0f1f2e;
    --light: #f7f4ef;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(26, 58, 92, 0.12);
    --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.3s;
    font-weight: 500;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 800px;
    margin-left: 8%;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 540px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--white);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

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

.section {
    padding: 100px 0;
}

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

.section-accent {
    background: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

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

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-image {
    flex: 1;
    position: relative;
    background-color: var(--accent);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.benefit-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

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

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

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: var(--shadow);
}

.service-image {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
    background-color: var(--accent);
    border-radius: 6px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 4px;
}

.cta-section {
    padding: 80px 0;
    background: var(--secondary);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

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

.form-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.form-container .form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s;
    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: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-main p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-sidebar {
    flex: 1;
    background: var(--accent);
    padding: 32px;
    border-radius: 8px;
}

.about-sidebar h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
}

.about-sidebar li:last-child {
    border-bottom: none;
}

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

.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 16px;
}

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

.page-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-detail h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-detail p {
    color: var(--text-light);
}

.contact-form-side {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.disclaimer {
    background: var(--accent);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.thanks-card {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--shadow);
}

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

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

.thanks-card h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--text);
}

.references-section {
    background: var(--light);
    padding: 40px 0;
}

.references-list {
    max-width: 800px;
    margin: 0 auto;
}

.references-list h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.references-list ol {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

@media (max-width: 992px) {
    .story-block {
        flex-direction: column;
        gap: 40px;
    }

    .story-block:nth-child(even) {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

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