:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #2d5a7b;
    --light: #f8f9fa;
    --dark: #0d1b2a;
    --text: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --border: #dee2e6;
    --success: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

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

.btn-primary:hover {
    background-color: #b8911f;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

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

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

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ad-disclosure {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.header-main {
    padding: 16px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
}

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

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

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

nav a:hover::after {
    width: 100%;
}

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

.nav-cta {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: #b8911f;
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.hero {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 60px 0;
    background-color: var(--white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

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

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--accent);
}

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

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-text {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 17px;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

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

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

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

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

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

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

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

.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--white);
}

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

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

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 350px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

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

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

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

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--secondary);
    padding: 16px 40px;
    font-size: 18px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 17px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

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

.contact-item p {
    opacity: 0.85;
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

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

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

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

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

.footer-bottom {
    padding: 24px 0;
    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: 14px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #b8911f;
}

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
    color: var(--secondary);
}

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

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

.content-wrapper h2 {
    font-size: 28px;
    color: var(--dark);
    margin: 40px 0 20px;
}

.content-wrapper h3 {
    font-size: 22px;
    color: var(--dark);
    margin: 32px 0 16px;
}

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

.content-wrapper ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

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

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

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

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

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, #e0b82e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

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

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

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

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

.team-card {
    flex: 1 1 260px;
    max-width: 300px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    font-weight: 700;
}

.team-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.team-card span {
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
}

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

.services-list-section {
    padding: 80px 0;
}

.service-detailed {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-detailed-image {
    flex: 0 0 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--accent);
}

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

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

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

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

.service-detailed-content ul {
    margin-bottom: 24px;
}

.service-detailed-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
}

.service-detailed-content li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.service-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background-color: var(--light);
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.service-price-tag .period {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success) 0%, #34c759 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: var(--white);
}

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

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

.contact-page-wrapper {
    padding: 80px 0;
}

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

.contact-main {
    flex: 2 1 500px;
}

.contact-sidebar {
    flex: 1 1 300px;
    background-color: var(--light);
    padding: 40px;
    border-radius: 12px;
    height: fit-content;
}

.contact-sidebar h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 24px;
}

.sidebar-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.sidebar-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.sidebar-item h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
}

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

.disclaimer-section {
    background-color: var(--light);
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
}

.disclaimer-section h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 16px;
}

.disclaimer-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

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

    .hero-content {
        padding: 60px 24px;
        order: 2;
    }

    .hero-image {
        order: 1;
        min-height: 300px;
    }

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 24px;
    }

    .split-image {
        min-height: 300px;
    }

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

    .contact-info,
    .contact-form-wrapper {
        padding: 60px 24px;
    }

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

    .service-detailed-image {
        flex: none;
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    nav a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-main .container {
        position: relative;
    }

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

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

    .footer-grid {
        gap: 40px;
    }

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

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

    .about-intro {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}
