/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3f0; /* Light tan background */
}

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

/* Header */
header {
    background-color: #2d5016; /* Deep forest green */
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.logo-text .tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #c5d1a0; /* Light green on hover */
}

/* Main content */
main {
    min-height: calc(100vh - 160px);
    padding: 2rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    color: #2d5016; /* Deep forest green */
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.app-description {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #5a8a2a; /* Medium green accent */
}

.app-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features h3 {
    color: #2d5016; /* Deep forest green */
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.features ul {
    list-style-type: none;
    padding-left: 0;
}

.features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.features li:before {
    content: "✓";
    color: #5a8a2a; /* Medium green */
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.cta {
    font-weight: bold;
    color: #2d5016; /* Deep forest green */
    text-align: center;
    font-size: 1.2rem;
}

/* Page content styles */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2d5016; /* Deep forest green */
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

.content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #5a8a2a; /* Medium green accent */
}

.content h2 {
    color: #2d5016; /* Deep forest green */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    color: #5a8a2a; /* Medium green */
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content ul, .content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

/* Subscription terms styling */
.subscription-terms {
    background-color: #f9f7f4; /* Light tan */
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #d4c5a1; /* Tan border */
}

.subscription-terms h2 {
    color: #2d5016; /* Deep forest green */
    margin-bottom: 1rem;
}

.subscription-terms h3 {
    color: #5a8a2a; /* Medium green */
    margin-bottom: 0.5rem;
}

.back-nav {
    margin-bottom: 1rem;
}

.back-nav a {
    color: #5a8a2a; /* Medium green */
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.back-nav a:hover {
    color: #2d5016; /* Deep forest green */
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2d5016; /* Deep forest green */
    color: white;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #c5d1a0; /* Light green */
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    nav {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
} 