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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #321D0B;
    background-color: #FCF8F5;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(252, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 109, 0, 0.1);
    box-shadow: 0 2px 20px rgba(255, 109, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FF6D00;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #321D0B;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #FF6D00;
    background-color: rgba(255, 109, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FF6D00;
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FCF8F5 0%, #F8E1CA 100%);
    overflow: hidden;
    padding-top: 70px; /* Account for fixed navbar height */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #321D0B;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 1;
}

.gradient-text {
    color: #FF6D00;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FF6D00;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.3);
    border-radius: 25px;
}

.btn-primary:hover {
    background: #FF7800;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 109, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF6D00;
    border: 2px solid #FF6D00;
    border-radius: 25px;
}

.btn-secondary:hover {
    background: #FF6D00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.3);
}

/* iPhone 17 Pro Max Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 700px;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: rotate(15deg) translateX(-100px) translateY(50px) scale(0.8);
    animation: phoneFloat 2s ease 1s forwards;
    border: 2px solid #3a3a3c;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate(12deg) translateX(0) translateY(0) scale(0.85);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 3px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
    z-index: 10;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
    position: relative;
    z-index: 1;
}

/* iPhone 17 Pro Max specific styling */
.phone-mockup {
    background: linear-gradient(145deg, #1d1d1f, #2c2c2e);
    border: 3px solid #3a3a3c;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Dynamic Island */
.phone-mockup::before {
    background: linear-gradient(145deg, #000, #1a1a1a);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Home indicator */
.phone-mockup::after {
    background: linear-gradient(90deg, transparent, #000, transparent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Floating Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 109, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

/* Animated Stars */
.star {
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    animation: twinkle 2s ease-in-out infinite, starMove 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 16px;
    animation: twinkle 2s ease-in-out infinite, starMove1 6s ease-in-out infinite;
}

.star-2 {
    top: 25%;
    right: 15%;
    animation-delay: 0.5s;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite, starMove2 7s ease-in-out infinite;
}

.star-3 {
    top: 35%;
    left: 5%;
    animation-delay: 1s;
    font-size: 14px;
    animation: twinkle 2s ease-in-out infinite, starMove3 5s ease-in-out infinite;
}

.star-4 {
    top: 45%;
    right: 20%;
    animation-delay: 1.5s;
    font-size: 18px;
    animation: twinkle 2s ease-in-out infinite, starMove4 8s ease-in-out infinite;
}

.star-5 {
    top: 55%;
    left: 15%;
    animation-delay: 2s;
    font-size: 16px;
    animation: twinkle 2s ease-in-out infinite, starMove5 6.5s ease-in-out infinite;
}

.star-6 {
    top: 65%;
    right: 10%;
    animation-delay: 2.5s;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite, starMove6 7.5s ease-in-out infinite;
}

.star-7 {
    top: 75%;
    left: 25%;
    animation-delay: 3s;
    font-size: 14px;
    animation: twinkle 2s ease-in-out infinite, starMove7 5.5s ease-in-out infinite;
}

.star-8 {
    top: 85%;
    right: 5%;
    animation-delay: 3.5s;
    font-size: 18px;
    animation: twinkle 2s ease-in-out infinite, starMove8 8.5s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #FCF8F5;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #321D0B;
}

.section-description {
    font-size: 1.2rem;
    color: #321D0B;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 109, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 109, 0, 0.2);
    border-color: rgba(255, 109, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF9314 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 109, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #321D0B;
}

.feature-card p {
    color: #321D0B;
    opacity: 0.7;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    opacity: 0;
    transform: translateX(-50px);
}

.step.animate {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF9314 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 109, 0, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #321D0B;
}

.step-content p {
    color: #321D0B;
    opacity: 0.7;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6D00 0%, #FF9314 100%);
    color: white;
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #321D0B;
    padding: 15px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    background: #F8E1CA;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-name {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: white;
    color: #321D0B;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 109, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #321D0B;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 0.7;
}

.footer-link:hover {
    color: #FF6D00;
    background-color: rgba(255, 109, 0, 0.1);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(50, 29, 11, 0.2);
    color: #321D0B;
    opacity: 0.6;
}

/* Privacy/Terms/Contact Pages */
.privacy-content {
    padding: 120px 0 80px;
    background: #FCF8F5;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 109, 0, 0.1);
}

.content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #321D0B;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #321D0B;
    opacity: 0.7;
    margin-bottom: 40px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6D00;
    margin-bottom: 15px;
}

.privacy-section p {
    color: #321D0B;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section li {
    color: #321D0B;
    line-height: 1.6;
    margin-bottom: 8px;
}

.back-button {
    text-align: center;
    margin-top: 40px;
}

/* Success Popup Styles */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-popup.show {
    display: flex;
}

.success-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: slideInUp 0.4s ease;
}

.success-popup-icon {
    font-size: 4rem;
    color: #00aa00;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.success-popup-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #321D0B;
    margin-bottom: 10px;
}

.success-popup-text p {
    color: #321D0B;
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.success-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: #F8E1CA;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 109, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6D00 0%, #FF9314 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #321D0B;
    margin-bottom: 10px;
}

.contact-card p {
    color: #321D0B;
    opacity: 0.7;
    margin-bottom: 15px;
}

.contact-link {
    color: #FF6D00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FF7800;
}

.contact-form {
    margin-top: 60px;
    padding: 40px;
    background: #F8E1CA;
    border-radius: 20px;
}

.contact-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #321D0B;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #321D0B;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 109, 0, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6D00;
    box-shadow: 0 0 0 3px rgba(255, 109, 0, 0.1);
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes phoneFloat {
    0% {
        opacity: 0;
        transform: rotate(15deg) translateX(-100px) translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: rotate(15deg) translateX(-50px) translateY(25px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotate(15deg) translateX(0) translateY(0) scale(0.8);
    }
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes starMove1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(8px) translateY(-3px); }
    50% { transform: translateX(-4px) translateY(6px); }
    75% { transform: translateX(12px) translateY(2px); }
}

@keyframes starMove2 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-6px) translateY(4px); }
    50% { transform: translateX(10px) translateY(-2px); }
    75% { transform: translateX(-8px) translateY(5px); }
}

@keyframes starMove3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(3px); }
    50% { transform: translateX(-7px) translateY(-4px); }
    75% { transform: translateX(9px) translateY(1px); }
}

@keyframes starMove4 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-9px) translateY(-2px); }
    50% { transform: translateX(6px) translateY(7px); }
    75% { transform: translateX(-5px) translateY(-3px); }
}

@keyframes starMove5 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(7px) translateY(5px); }
    50% { transform: translateX(-3px) translateY(-6px); }
    75% { transform: translateX(11px) translateY(3px); }
}

@keyframes starMove6 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-4px) translateY(8px); }
    50% { transform: translateX(9px) translateY(-1px); }
    75% { transform: translateX(-6px) translateY(4px); }
}

@keyframes starMove7 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(6px) translateY(-5px); }
    50% { transform: translateX(-8px) translateY(3px); }
    75% { transform: translateX(4px) translateY(7px); }
}

@keyframes starMove8 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-7px) translateY(6px); }
    50% { transform: translateX(5px) translateY(-4px); }
    75% { transform: translateX(-9px) translateY(2px); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px; /* Additional spacing for mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 20px; /* Ensure title is not hidden behind navbar */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px; /* Extra padding for very small screens */
    }
    
    .hero-container {
        padding-top: 30px; /* Additional spacing for very small screens */
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 30px; /* Extra margin for very small screens */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}
