/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5282;
    --secondary-color: #4a90d9;
    --accent-color: #f39c12;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

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

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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

/* Asymmetric Navigation */
.nav-asymmetric {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin-right: 32px;
}

.nav-link {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

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

/* Hero Asymmetric */
.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 560px;
    padding-right: 60px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.3);
}

.hero-image-floating {
    flex: 1;
    position: relative;
    transform: translateX(20px) rotate(-2deg);
}

.hero-image-floating img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: var(--bg-light);
}

/* Intro Overlap */
.intro-overlap {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
    align-items: flex-start;
}

.intro-card-left {
    flex: 1.2;
    background-color: var(--primary-color);
    color: white;
    padding: 48px;
    border-radius: 12px;
    transform: translateY(-60px);
}

.intro-card-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-card-left p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Approach Section */
.approach-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.approach-grid-irregular {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.approach-image-offset {
    flex: 0.8;
    transform: translateY(40px) rotate(3deg);
}

.approach-image-offset img {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background-color: var(--bg-white);
}

/* Services Highlight - Asymmetric Grid */
.services-highlight {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--text-dark);
    margin-left: 40px;
}

.services-asymmetric-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

.service-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 48px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.service-card-small {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.service-card-medium {
    grid-column: 1 / 3;
    background-color: var(--accent-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.service-card-large h3,
.service-card-small h3,
.service-card-medium h3 {
    font-size: 26px;
    margin-bottom: 16px;
}

.service-card-large p,
.service-card-small p,
.service-card-medium p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
}

.btn-service {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card-large .btn-service {
    background-color: var(--accent-color);
    color: white;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Testimonial Offset */
.testimonial-offset {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.testimonial-block {
    max-width: 800px;
    margin-left: 120px;
    background-color: white;
    padding: 48px;
    border-left: 6px solid var(--accent-color);
    transform: translateX(-40px);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* Values Irregular */
.values-irregular {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.values-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 16px;
    color: var(--text-light);
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.values-image {
    flex: 0.9;
    transform: translateY(-40px);
}

.values-image img {
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(0,0,0,0.13);
    background-color: var(--bg-light);
}

/* Form Section */
.form-section {
    padding: 100px 60px;
    background: linear-gradient(to bottom right, var(--bg-light) 0%, #e6f2ff 100%);
}

.form-container-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 80px;
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 82, 130, 0.3);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 60px 32px;
}

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

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-nav a,
.footer-legal a {
    display: block;
    color: #cbd5e0;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 32, 44, 0.98);
    color: white;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

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

.btn-cookie-accept:hover {
    background-color: #27ae60;
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* About Page */
.about-hero {
    padding: 100px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.about-hero-content {
    max-width: 900px;
}

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

.about-lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.about-story {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-white);
    align-items: center;
}

.story-image-side {
    flex: 1;
}

.story-image-side img {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background-color: var(--bg-light);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.about-approach-offset {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.approach-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: 100px;
}

.approach-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-block p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-grid-irregular {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.section-title-center {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.team-members {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-card {
    flex: 0 1 320px;
    text-align: center;
}

.team-image {
    margin-bottom: 20px;
}

.team-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

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

.team-role {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.values-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-item {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Services Page */
.services-intro {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e6f2ff 100%);
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

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

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background-color: var(--bg-light);
}

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

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

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

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

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

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

.btn-service-detail {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-service-detail:hover {
    background-color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 82, 130, 0.3);
}

.services-comparison {
    padding: 60px;
    background-color: var(--bg-light);
    text-align: center;
    border-radius: 12px;
    margin: 40px 60px;
}

.services-comparison h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-comparison p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.btn-comparison {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Contact Page */
.contact-hero {
    padding: 100px 60px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-lead {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-info-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background-color: var(--bg-light);
}

.contact-cta-section {
    padding: 60px;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    margin: 60px;
    border-radius: 12px;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-cta-section p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-contact-cta {
    display: inline-block;
    background-color: white;
    color: var(--accent-color);
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.faq-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background-color: white;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Thanks Page */
.thanks-container {
    padding: 100px 60px;
    background-color: var(--bg-light);
    min-height: 600px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ul {
    padding-left: 24px;
}

.thanks-next-steps li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn-thanks-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-thanks-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-thanks-secondary:hover {
    background-color: var(--bg-light);
}

.thanks-additional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.thanks-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    text-align: left;
}

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

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

/* Legal Pages */
.legal-content {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-section li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.legal-section a:hover {
    color: var(--primary-color);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-floating {
        transform: none;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-card-left {
        transform: none;
    }

    .approach-grid-irregular,
    .about-story,
    .values-irregular,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .services-asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .service-card-large {
        grid-row: auto;
    }

    .service-card-medium {
        flex-direction: column;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .values-grid,
    .faq-grid,
    .thanks-additional {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-wrap: wrap;
        padding: 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 20px;
        margin-right: 0;
        justify-content: space-around;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title-offset,
    .section-title-center {
        font-size: 32px;
        margin-left: 0;
    }

    .testimonial-block {
        margin-left: 0;
        transform: none;
    }

    .form-container-offset {
        margin-right: 0;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}