:root {
    --color-primary: #1a365d;
    --color-secondary: #3182ce;
    --color-accent: #63b3ed;
    --color-dark: #0d1b2a;
    --color-light: #f7fafc;
    --color-text: #2d3748;
    --color-muted: #718096;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-warning: #ed8936;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-light);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-muted);
    font-size: 11px;
    text-align: center;
    padding: 6px 0;
}

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

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

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
}

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

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

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

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

.nav-main a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 14px;
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Asymmetric */
.hero-asymmetric {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-asymmetric::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    transform: rotate(-15deg);
    opacity: 0.08;
    z-index: 0;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.hero-description {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--color-primary);
    padding: 16px 32px;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
}

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

.hero-image-container {
    flex: 1;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    background-color: var(--color-border);
    position: relative;
    transform: rotate(2deg);
}

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

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: rotate(-3deg);
}

.floating-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.floating-text strong {
    display: block;
    font-size: 20px;
    color: var(--color-dark);
}

.floating-text span {
    font-size: 13px;
    color: var(--color-muted);
}

/* Sections General */
.section {
    padding: 100px 0;
}

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

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

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

.section-gradient {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
}

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

.section-header-left {
    text-align: left;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: var(--color-border);
}

/* Offset Layout */
.offset-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.offset-content {
    flex: 1;
}

.offset-visual {
    flex: 1;
    position: relative;
}

.offset-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    background-color: var(--color-border);
    box-shadow: var(--shadow-medium);
}

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

.offset-image-overlap {
    position: absolute;
    width: 60%;
    height: 250px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    background-color: var(--color-border);
    box-shadow: var(--shadow-strong);
    bottom: -40px;
    right: -40px;
    border: 4px solid var(--color-white);
}

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

/* Services Grid */
.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(1) {
    flex: 0 0 calc(60% - 15px);
}

.service-card:nth-child(2) {
    flex: 0 0 calc(40% - 15px);
}

.service-card:nth-child(3) {
    flex: 0 0 calc(40% - 15px);
}

.service-card:nth-child(4) {
    flex: 0 0 calc(60% - 15px);
}

.service-card:nth-child(5) {
    flex: 0 0 calc(50% - 15px);
}

.service-card:nth-child(6) {
    flex: 0 0 calc(50% - 15px);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-secondary);
    transform: scaleY(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

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

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

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

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

.service-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.service-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--color-success);
    flex-shrink: 0;
}

/* Benefits Staggered */
.benefits-staggered {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 40px;
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-row:nth-child(odd) {
    margin-left: 0;
    margin-right: 80px;
}

.benefit-row:nth-child(even) {
    margin-left: 80px;
    margin-right: 0;
}

.benefit-row:hover {
    box-shadow: var(--shadow-medium);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    min-width: 70px;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--color-muted);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--color-accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

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

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
}

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

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    background-color: var(--color-primary);
    border-radius: var(--radius-large);
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: var(--color-secondary);
    opacity: 0.1;
    transform: rotate(20deg);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

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

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 16px 36px;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Form Styles */
.form-container {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 15px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-light);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-small);
    transition: var(--transition);
}

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

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-muted);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--color-secondary);
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
}

/* About Page */
.about-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

.about-intro-text {
    flex: 1;
}

.about-intro-visual {
    flex: 1;
    position: relative;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

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

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

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

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

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

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

.contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 2;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--color-muted);
    transition: var(--transition);
}

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

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

.footer-copyright {
    font-size: 13px;
    color: var(--color-muted);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--color-muted);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-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: 30px;
}

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

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

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

.btn-cookie {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: var(--color-accent);
}

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

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

/* Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

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

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

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

.thanks-message {
    font-size: 16px;
    color: var(--color-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-content {
    padding-top: 140px;
    padding-bottom: 80px;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

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

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--color-light);
    padding: 20px 24px;
    border-radius: var(--radius-small);
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-top: 60px;
    border-left: 4px solid var(--color-warning);
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    z-index: 999;
    padding: 100px 30px 30px;
}

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

.mobile-nav a {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-floating-card {
        left: auto;
        right: 20px;
    }

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

    .service-card:nth-child(n) {
        flex: 0 0 100%;
    }

    .benefit-row:nth-child(odd),
    .benefit-row:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

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

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

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

    .hamburger {
        display: flex;
    }

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

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

    .hero-image-main {
        height: 350px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px;
    }

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

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

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