:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #e2e8f0;
    --success: #10b981;
    --border: #cbd5e1;
    --shadow: rgba(15, 23, 42, 0.08);
    --radius: 8px;
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

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

.sidebar {
    width: 280px;
    background: var(--secondary);
    color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    line-height: 1.4;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

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

.sidebar-nav li {
    margin-bottom: 4px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    border-left-color: var(--accent);
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.main-content {
    flex: 1;
    margin-left: 280px;
}

.top-bar {
    background: var(--bg);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar-left {
    font-size: 14px;
    color: var(--text-light);
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-link {
    font-size: 14px;
    color: var(--text);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
}

.content-area {
    padding: 48px;
}

.hero-section {
    background-color: #1e3a5f;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: var(--radius);
    padding: 80px 56px;
    margin-bottom: 48px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    color: #ffffff;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-accent {
    background: var(--accent);
    color: #ffffff;
}

.btn-accent:hover {
    background: #0891b2;
    color: #ffffff;
}

.section {
    margin-bottom: 64px;
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 12px 32px var(--shadow);
    transform: translateY(-4px);
}

.service-image {
    height: 180px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

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

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

.about-split {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-dark);
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.stat-row {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.testimonial-section {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 48px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 2px 8px var(--shadow);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 15px;
}

.author-location {
    font-size: 13px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 56px;
    text-align: center;
    color: #ffffff;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 48px;
}

.contact-form {
    max-width: 560px;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    transition: border-color 0.2s ease;
}

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

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

.page-header {
    background-color: #1a365d;
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: var(--radius);
    padding: 64px 56px;
    margin-bottom: 48px;
    color: #ffffff;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #ffffff;
}

.breadcrumb span {
    opacity: 0.6;
}

.content-block {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.content-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.content-block p {
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.contact-info-card {
    flex: 1;
    min-width: 240px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.footer {
    background: var(--secondary);
    color: #ffffff;
    padding: 48px;
    margin-top: 64px;
}

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

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

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #ffffff;
}

.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-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

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

.footer-legal a:hover {
    color: #ffffff;
}

.disclaimer {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #ffffff;
    padding: 20px 48px;
    z-index: 9999;
    display: none;
    margin-left: 280px;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

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

.cookie-accept:hover {
    background: #0891b2;
}

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.thanks-section {
    text-align: center;
    padding: 80px 40px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
}

.thanks-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-selected {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: inline-block;
    margin-bottom: 32px;
}

.service-selected-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.service-selected-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.team-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

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

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

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

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

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

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

    .mobile-toggle {
        display: block;
    }

    .cookie-banner {
        margin-left: 0;
    }

    .content-area {
        padding: 24px;
    }

    .hero-section {
        padding: 48px 32px;
    }

    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .top-bar {
        padding: 16px 20px;
    }

    .content-area {
        padding: 16px;
    }

    .hero-section {
        padding: 40px 24px;
    }

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

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

    .about-split {
        gap: 24px;
    }

    .stat-row {
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .footer {
        padding: 32px 24px;
    }

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