:root {
    --color-primary: #2d5a4a;
    --color-secondary: #d4a574;
    --color-dark: #1a1a1a;
    --color-light: #f8f6f3;
    --color-white: #ffffff;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e5e0;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Roboto', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #234a3c;
    color: var(--color-white);
}

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

.btn-secondary:hover {
    background-color: #c49664;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    color: var(--color-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

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

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(212,165,116,0.1) 100%);
    transform: rotate(-15deg);
}

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

.hero-text {
    flex: 1;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(45,90,74,0.1);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: 3.2rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 36px;
    max-width: 540px;
}

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

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

.hero-image {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d7a64 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image svg {
    width: 60%;
    height: auto;
    opacity: 0.9;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    padding: 20px 28px;
    border-radius: 8px;
    text-align: center;
}

.hero-badge-number {
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

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

.section-accent h2 {
    color: var(--color-white);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-header-left p {
    margin: 0;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.6;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-light);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Features Split */
.features-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.features-visual {
    flex: 1;
}

.features-visual-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e4b584 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.features-visual-box svg {
    width: 50%;
    height: auto;
    opacity: 0.8;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    margin-bottom: 24px;
}

.features-text > p {
    color: var(--color-gray);
    margin-bottom: 32px;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.features-list .icon {
    width: 28px;
    height: 28px;
    background-color: rgba(45,90,74,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list .icon svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

.features-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.features-list span {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--color-gray-light);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background-color: var(--color-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
    padding: 30px;
}

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

.process-step h4 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    margin: 0 8px;
}

/* Form Styles */
.form-wrapper {
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: var(--color-white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

/* Contact Info */
.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(45,90,74,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-gray);
}

.contact-form {
    flex: 1.5;
    min-width: 400px;
}

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

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

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 320px;
    line-height: 1.8;
}

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

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

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

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* 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;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

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

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background-color: #234a3c;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(45,90,74,0.4);
}

/* Thanks Page */
.thanks-wrapper {
    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-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content h1 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.thanks-service {
    background-color: var(--color-white);
    padding: 24px 32px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.thanks-service strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.thanks-service span {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Page */
.content-page {
    padding: 60px 0;
}

.content-page h2 {
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.content-page h3 {
    margin: 32px 0 16px;
    font-size: 1.4rem;
}

.content-page p {
    margin-bottom: 16px;
    color: var(--color-gray);
}

.content-page ul,
.content-page ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-gray);
}

.content-page li {
    margin-bottom: 8px;
}

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.about-intro-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d7a64 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(45,90,74,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--color-gray);
}

/* Services Page */
.services-full {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-full-card {
    display: flex;
    gap: 40px;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 400px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.service-full-image svg {
    width: 100px;
    height: 100px;
    opacity: 0.5;
}

.service-full-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-full-content h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.service-full-content p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

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

.service-full-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-full-price .unit {
    color: var(--color-gray);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

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

.service-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }

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

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

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

    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .features-split,
    .features-split.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        flex: none;
        height: 250px;
    }

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

    .contact-form {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-gray-light);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        gap: 40px;
    }

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

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

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
    }

    .btn-large {
        padding: 14px 32px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}
