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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #60a5fa;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e40af;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Hero Offset (Asymmetric Layout) */
.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    gap: 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-left: 8%;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -5%;
}

.hero-image-offset img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.cta-inline {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    transform: translateX(5px);
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: #ffffff;
}

.intro-left {
    flex: 1.5;
    padding-right: 3rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.stat-block {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.problem-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ef4444;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ef4444;
}

/* Trust Builder */
.trust-builder {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
}

.trust-builder img {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.trust-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

/* Services Showcase - Asymmetric */
.services-showcase {
    padding: 6rem 5%;
    background: #f9fafb;
}

.services-showcase h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-large {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-small {
    flex: 1 1 calc(25% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-medium {
    flex: 1 1 calc(33.333% - 1rem);
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3,
.service-small h3,
.service-medium h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.select-service:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Testimonials Offset */
.testimonials-offset {
    padding: 6rem 5%;
    background: #ffffff;
}

.testimonials-offset h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

.testimonials-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
}

.testimonial-card.offset {
    margin-top: 3rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
}

/* Benefits Visual */
.benefits-visual {
    padding: 6rem 5%;
    background: #f9fafb;
}

.benefits-split {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.benefit-item {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 5rem 5%;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #9ca3af;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

/* About Page Styles */
.about-story {
    padding: 5rem 5%;
    background: #ffffff;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content img {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.values-section {
    padding: 6rem 5%;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card.offset-top {
    margin-top: 2rem;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.team-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

.team-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.team-member.offset {
    margin-top: 3rem;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-section {
    padding: 5rem 5%;
    background: #2563eb;
    color: #ffffff;
}

.stats-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.stats-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

.approach-section {
    padding: 6rem 5%;
    background: #f9fafb;
}

.approach-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-about {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-about p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Services Page */
.services-detail {
    padding: 5rem 5%;
    background: #f9fafb;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.service-detail-card.offset {
    margin-left: 5%;
    margin-right: -5%;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f9fafb;
}

.service-detail-header img {
    width: 40%;
    border-radius: 8px;
}

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

.service-detail-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

.service-detail-body {
    padding: 2.5rem;
}

.service-detail-body h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #111827;
}

.service-detail-body ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-body ul li {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.comparison-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.comparison-table {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    flex: 1;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-col.highlight {
    background: #2563eb;
    color: #ffffff;
}

.comparison-col h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-col.highlight h3 {
    color: #ffffff;
}

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

.comparison-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-list.positive li::before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

.comparison-list.negative li::before {
    content: "✗ ";
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.5rem;
}

.comparison-col.highlight .comparison-list.positive li::before {
    color: #ffffff;
}

.packages-section {
    padding: 6rem 5%;
    background: #f9fafb;
}

.packages-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.package-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #111827;
    text-align: center;
}

.package-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    margin-bottom: 2rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.package-card ul li::before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}

.faq-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.faq-item p {
    color: #4b5563;
}

.cta-services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #111827;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.response-time {
    padding: 5rem 5%;
    background: #f9fafb;
}

.response-time h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.response-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.response-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.response-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.response-item p {
    color: #6b7280;
}

/* Thanks Page */
.thanks-hero {
    padding: 7rem 5%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 5rem;
    background: #ffffff;
    color: #10b981;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-weight: 700;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-info {
    font-size: 1.1rem;
    opacity: 0.95;
}

.next-steps {
    padding: 5rem 5%;
    background: #f9fafb;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.step-card p {
    color: #6b7280;
}

.thanks-cta {
    padding: 4rem 5%;
    background: #ffffff;
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #f3f4f6;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-intro {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2563eb;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.8rem;
    }

    .hero-image-offset {
        margin-top: 2rem;
    }

    .intro-asymmetric,
    .trust-builder,
    .story-content,
    .contact-layout {
        flex-direction: column;
    }

    .service-large {
        flex: 1 1 100%;
    }

    .comparison-table {
        flex-direction: column;
    }

    .service-detail-card.offset {
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-detail-header img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-asymmetric {
        flex-direction: column;
    }

    .service-small,
    .service-medium {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .package-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 1.8rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}
