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

:root {
    --navy-blue: #1e3a5f;
    --orange: #ff8c42;
    --light-orange: #ffb380;
    --dark-navy: #15293f;
    --light-gray: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-gray);
}

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

header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy-blue);
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
}

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

.nav-links a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.1;
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

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

.tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

section {
    padding: 3rem 0;
}

.story {
    background: white;
}

.story h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.story p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.story .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange);
    text-align: center;
    margin: 2rem auto;
    font-style: italic;
    position: relative;
    padding: 1rem;
}

.story .highlight::before,
.story .highlight::after {
    content: '✨';
    position: absolute;
    color: var(--orange);
    opacity: 0.3;
    font-size: 1.5rem;
}

.story .highlight::before {
    left: -30px;
}

.story .highlight::after {
    right: -30px;
}

.features {
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.15);
    border-top: 3px solid var(--orange);
}

.feature h3 {
    color: var(--orange);
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

.cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.cta::after {
    content: '✨';
    position: absolute;
    font-size: 3rem;
    top: 20%;
    left: 10%;
    opacity: 0.2;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

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

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

.app-store-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: var(--orange);
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.app-store-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.app-store-badge {
    height: 60px;
    width: auto;
}

footer {
    background: var(--dark-navy);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-text p {
    margin: 0.25rem 0;
}

.footer-text p:last-child {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.privacy-highlight-box {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(255, 140, 66, 0.1) 100%);
    border: 2px solid var(--orange);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
}

.privacy-highlight-box::before {
    content: '🧹';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background: white;
    padding: 0 10px;
}

.privacy-highlight-box strong {
    font-size: 1.1rem;
    color: var(--navy-blue);
    display: block;
    margin-bottom: 12px;
}

.privacy-highlight-box ul {
    margin: 0;
    padding-left: 25px;
}

.privacy-highlight-box li {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.privacy-notice {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-bottom: 40px;
}

.privacy-notice h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.privacy-notice ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-notice li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #555;
}

.legal-content {
    background: white;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-content .last-updated {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 3rem;
    padding: 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: #444;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav .container {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}