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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #1a3a4d;
    --accent-color: #4a90b8;
    --text-dark: #1e1e1e;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --sidebar-width: 280px;
}

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

.site-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background-color: var(--secondary-color);
    color: white;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    letter-spacing: 0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    padding: 8px 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

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

.sidebar-nav a {
    display: block;
    padding: 14px 25px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--primary-color);
    color: white;
    padding-left: 30px;
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    padding: 0;
}

.hero-section {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 120px 60px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.92), rgba(26, 58, 77, 0.88));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    background-color: var(--accent-color);
    color: white;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
}

.section {
    padding: 80px 60px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 45px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 28px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 40px;
}

.service-item {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.service-content {
    padding: 30px 28px;
}

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

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

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

.service-price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.about-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    min-width: 400px;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.form-container {
    flex: 1;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

.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(44, 95, 124, 0.1);
}

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

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

.submit-button:hover {
    background-color: var(--secondary-color);
}

.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    line-height: 2.2;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 25px 60px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 30px;
}

.cookie-banner.active {
    display: flex;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.cookie-accept,
.cookie-reject {
    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(--primary-color);
    color: white;
}

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

.cookie-reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .about-layout,
    .contact-grid {
        flex-direction: column;
    }

    .about-image {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 30px;
    }

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

    .section {
        padding: 60px 30px;
    }

    .features-grid,
    .services-layout {
        gap: 20px;
    }

    .feature-card,
    .service-item {
        min-width: 100%;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-banner {
        flex-direction: column;
        padding: 20px 30px;
    }
}
