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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

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

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 1rem 0;
}

.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a252f;
}

.brand a {
    color: #1a252f;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a252f;
    margin: 3px 0;
    transition: 0.3s;
}

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

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #3498db;
    background: #f0f8ff;
}

/* Hero Section */
.hero-visual {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 3rem 20px;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Story Intro */
.story-intro {
    background: #f8f9fa;
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a252f;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
}

.container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.emphasis-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-top: 2rem;
}

/* Insight Reveal */
.insight-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.insight-reveal h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.insight-reveal p {
    font-size: 1.2rem;
    text-align: center;
}

.highlight-box {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid white;
}

/* Trust Building */
.trust-building {
    padding: 5rem 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.trust-card h3 {
    margin-bottom: 1rem;
    color: #1a252f;
}

/* Testimonials */
.testimonials-inline {
    background: #f0f8ff;
    padding: 4rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 0;
}

.benefits-layout {
    margin-top: 3rem;
}

.benefit-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-block img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2980b9;
    transform: translateX(5px);
}

/* Pricing Section */
.pricing-reveal {
    background: #f8f9fa;
    padding: 5rem 0;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a252f;
    margin: 1.5rem 0;
}

.old-price {
    font-size: 1.5rem;
    color: #95a5a6;
    text-decoration: line-through;
    font-weight: 400;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.select-service,
.btn-select {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.select-service:hover,
.btn-select:hover {
    background: #2980b9;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.urgency-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.urgency-box p {
    color: #856404;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: white;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.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: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.guarantee-item h4 {
    margin-bottom: 0.5rem;
    color: #1a252f;
}

/* Footer */
.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: white;
    color: #2c3e50;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    color: white;
}

/* About Page Specific */
.about-content {
    padding: 5rem 0;
}

.content-block {
    line-height: 1.8;
}

.content-block h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 12px;
}

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

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

.stat-label {
    color: #7f8c8d;
    font-weight: 600;
}

.closing-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 3rem 0;
    padding: 2rem;
    background: #f0f8ff;
    border-left: 4px solid #3498db;
    border-radius: 8px;
}

/* Services Page */
.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-listing .price-card {
    max-width: 380px;
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.why-choose {
    padding: 5rem 0;
    background: white;
}

.benefit-list {
    margin: 3rem 0;
}

.benefit-item {
    padding: 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.benefit-item h3 {
    margin-bottom: 1rem;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    border-radius: 12px;
    margin-top: 4rem;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    margin-bottom: 1rem;
    color: #1a252f;
}

.info-block a {
    color: #3498db;
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
    min-height: 400px;
}

.map-content {
    text-align: center;
}

.map-note {
    margin: 2rem 0;
    color: #7f8c8d;
}

.btn-map {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #2980b9;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-cta {
    padding: 5rem 0;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 0 4rem;
    background: #f8f9fa;
    text-align: center;
    margin-top: 80px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.thanks-content {
    padding: 5rem 0;
}

.thanks-info-box {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #d0e8ff;
}

.order-detail:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #2c3e50;
}

.value {
    color: #3498db;
    font-weight: 600;
}

.next-steps {
    margin: 4rem 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.thanks-guarantee {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
}

.thanks-additional {
    padding: 4rem 0;
    background: #f8f9fa;
}

.suggestions-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.suggestion-card h3 {
    margin-bottom: 1rem;
}

.suggestion-card a {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
    margin-top: 80px;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-note {
    background: #f0f8ff;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    border-radius: 8px;
    margin: 2rem 0;
}

.warning-note {
    background: #fff3cd;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    margin: 2rem 0;
    color: #856404;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.services-grid-section {
    padding: 5rem 0;
}

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

    h2 {
        font-size: 1.7rem;
    }

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

    .container-split {
        flex-direction: column;
    }

    .split-image img {
        width: 100%;
    }

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

    .benefit-block img {
        width: 100%;
    }

    .trust-grid,
    .guarantee-grid {
        flex-direction: column;
    }

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

    .stats-section {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: none;
    }

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

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

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

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

    section {
        padding: 3rem 0;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        min-width: 100%;
    }

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

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

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

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

    .lead-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
