:root {
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    --color-emerald-50: #ecfdf5;
    --color-emerald-500: #10b981;
    --color-emerald-600: #059669;
    --color-rose-500: #f43f5e;
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-900: #1e3a8a;
}

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

body {
    font-family: var(--font-sans);
    background-color: #FDFCFB;
    color: var(--color-slate-900);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-slate-100);
    padding: 0.75rem 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background-color: var(--color-slate-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo-sm {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.brand-name {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-slate-900);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-500);
    font-weight: 500;
}

.brand-name-footer {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.nav-link {
    color: var(--color-slate-600) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-slate-900) !important;
}

.btn-cta {
    background-color: var(--color-slate-900);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-cta:hover {
    background-color: var(--color-slate-800);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-slate-100);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-600);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-emerald-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--color-slate-900);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate-600);
    line-height: 1.7;
}

.hero-description {
    color: var(--color-slate-500);
    font-style: italic;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    inset: -1rem;
    background-color: var(--color-slate-100);
    border-radius: 3rem;
    transform: rotate(-2deg);
    z-index: 0;
}

.hero-image-container {
    position: relative;
    z-index: 10;
    aspect-ratio: 4/5;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background-color: var(--color-slate-200);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-slate-100) 0%, var(--color-slate-200) 100%);
    color: var(--color-slate-400);
    font-size: 4rem;
}

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

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 20;
    border: 1px solid var(--color-slate-50);
}

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

.hero-card-icon svg {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-slate-900);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: var(--color-slate-800);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
    text-decoration: none;
}

.btn-secondary-custom {
    background-color: white;
    color: var(--color-slate-900);
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    font-weight: 500;
    border: 1px solid var(--color-slate-200);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: var(--color-slate-50);
    color: var(--color-slate-900);
    text-decoration: none;
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-slate-900);
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--color-slate-800);
    border-radius: 2px;
    margin: 0 auto;
}

/* Cards */
.card-custom {
    padding: 2rem;
    border-radius: 2rem;
    background-color: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s;
}

.card-custom:hover {
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.card-icon {
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-custom:hover .card-icon {
    background-color: var(--color-slate-900);
    color: white;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-slate-900);
    border-radius: 3rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.cta-bg-gradient {
    position: absolute;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, white 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
}

.cta-bg-gradient--1 {
    top: -10%;
    left: -10%;
}

.cta-bg-gradient--2 {
    bottom: -10%;
    right: -10%;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.cta-text {
    color: var(--color-slate-400);
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: var(--color-slate-50);
    border-top: 1px solid var(--color-slate-100);
    padding: 4rem 0 2rem;
    margin-top: 1rem;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-900);
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    line-height: 1.7;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--color-slate-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-slate-900);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-slate-600);
    font-size: 0.9rem;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-contact span {
    font-weight: 600;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-slate-200);
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    margin: 0;
}

.design-credit {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    margin: 0;
}

/* About Page */
.about-hero {
    background-color: var(--color-slate-50);
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-slate-100);
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -1rem;
    background-color: var(--color-slate-100);
    border-radius: 3rem;
    transform: rotate(3deg);
    z-index: 0;
}

.about-image-container {
    position: relative;
    z-index: 10;
    aspect-ratio: 3/4;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid white;
    background-color: var(--color-slate-200);
}

.about-badge {
    color: var(--color-emerald-600);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-sans);
}

.about-section-spacer {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Timeline */
.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-item h4 {
    font-family: var(--font-sans);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-marker-box {
    font-family: var(--font-sans);
    width: 56px;
    height: 56px;
    background-color: white;
    border: 1px solid var(--color-slate-200);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.timeline-item:hover .timeline-marker-box {
    background-color: var(--color-slate-900);
    color: white;
}

.timeline-line {
    width: 1px;
    height: 100%;
    background-color: var(--color-slate-200);
    margin-top: 1rem;
}

/* Services Page */
.services-hero {
    background-color: var(--color-slate-900);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.services-hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background-color: var(--color-emerald-500);
    border-radius: 50%;
    filter: blur(120px);
}

.price-card {
    padding: 2.5rem;
    border-radius: 3rem;
    text-align: center;
    transition: all 0.3s;
}

.price-card--light {
    background-color: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
}

.price-card--light:hover {
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.price-card--dark {
    background-color: var(--color-slate-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-emerald-500);
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.price-icon {
    width: 64px;
    height: 64px;
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem;
}

.price-icon svg {
    width: 32px;
    height: 32px;
}

.price-card--dark .price-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.price-duration {
    color: var(--color-slate-500);
    font-size: 0.875rem;
}

.price-card--dark .price-duration {
    color: var(--color-slate-400);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-slate-900);
    margin: 1rem 0;
}

.price-card--dark .price-amount {
    color: white;
}

.price-description {
    color: var(--color-slate-600);
    font-size: 0.875rem;
    line-height: 1.7;
}

.price-card--dark .price-description {
    color: var(--color-slate-400);
}

.price-free {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-emerald-600) 0%, var(--color-emerald-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Methods Page */
.methods-hero {
    background-color: var(--color-slate-900);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-slate-50);
}

.checklist-icon {
    color: var(--color-emerald-500);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.info-box {
    padding: 2rem;
    border-radius: 2rem;
    background-color: var(--color-blue-50);
    border: 1px solid var(--color-blue-100);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-box-icon {
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.info-box-icon svg {
    width: 24px;
    height: 24px;
}

.info-box-text {
    color: var(--color-blue-900);
    font-weight: 500;
    margin: 0;
}

.method-card {
    border-radius: 3rem;
    padding: 2rem 2rem 2rem 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
    font-family: var(--font-sans);
}

.method-card h5 {
    font-family: var(--font-sans);
}

.method-card--light {
    background-color: white;
    border: 1px solid var(--color-slate-100);
    box-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.2);
}

.method-card--dark {
    background-color: var(--color-slate-900);
    color: white;
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
}

.method-icon--light {
    background-color: var(--color-slate-900);
    color: white;
}

.method-icon--dark {
    background-color: white;
    color: var(--color-slate-900);
}

.skill-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card h5 {
    font-family: var(--font-sans);
}

.skill-card p {
    color: oklch(86.9% 0.022 252.894);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-slate-100);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-600);
    font-family: var(--font-sans);
}

.method-card h6 {
    font-family: var(--font-sans);
}

/* Colleagues Page */
.colleagues-hero {
    background-color: var(--color-slate-50);
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-slate-100);
}

.colleagues-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-slate-200);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-700);
}

.approach-card {
    background-color: var(--color-slate-900);
    border-radius: 2.5rem;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.approach-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.approach-item:last-child {
    margin-bottom: 0;
}

.approach-card {
    margin-bottom: 2rem;
}

.approach-icon {
    color: var(--color-emerald-400);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.approach-text {
    font-size: 0.875rem;
    color: var(--color-slate-300);
    line-height: 1.7;
}

.format-card {
    background-color: var(--color-emerald-50);
    border-radius: 2.5rem;
    padding: 2.5rem;
    border: 1px solid var(--color-emerald-100);
}

.format-title {
    color: var(--color-emerald-900);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.format-text {
    color: var(--color-emerald-800);
    font-weight: 500;
    margin: 0;
}

/* Contacts Page */
.contacts-hero {
    background-color: var(--color-slate-50);
    padding: 8rem 0;
    border-bottom: 1px solid var(--color-slate-100);
}

.contact-card {
    padding: 2.5rem;
    border-radius: 3rem;
    background-color: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
    text-align: center;
    transition: all 0.5s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card:hover .contact-icon {
    background-color: var(--color-slate-900);
    color: white;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
}

.contact-subtitle {
    color: var(--color-slate-500);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.hours-card {
    background-color: white;
    border-radius: 3rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-slate-100);
    text-align: center;
}

.hours-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-slate-900);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem;
}

.hours-icon svg {
    width: 32px;
    height: 32px;
}

.hours-schedule {
    font-size: 2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-emerald-600);
}

.hours-days {
    font-weight: 700;
    color: var(--color-slate-900);
    font-family: var(--font-sans);
}

.hours-weekend {
    color: var(--color-rose-500);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 2rem;
    background-color: var(--color-slate-50);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s;
}

.info-card:hover {
    background-color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background-color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-900);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h4 {
    font-family: var(--font-sans);
}

.info-card:hover .info-card-icon {
    background-color: var(--color-slate-900);
    color: white;
}

/* Utilities */
.w-3 { width: 12px; }
.w-4 { width: 16px; }
.w-5 { width: 20px; }
.w-6 { width: 24px; }
.w-7 { width: 28px; }
.w-8 { width: 32px; }

.h-3 { height: 12px; }
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-7 { height: 28px; }
.h-8 { height: 32px; }

.section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-py-lg {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.bg-slate-50 {
    background-color: var(--color-slate-50);
}

.bg-slate-900 {
    background-color: var(--color-slate-900);
}

.text-emerald-600 {
    color: var(--color-emerald-600);
}

.text-rose-500 {
    color: var(--color-rose-500);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0 6rem;
    }
    
    .section-py-lg {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .hero-card {
        display: none;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
}
