:root {
    --primary-color: #FF6B4A; /* Approximate from screenshot button */
    --background-top: #FFF0E6;
    --background-bottom: #FFDAB9;
    --text-color: #333333;
    --card-bg: rgba(255, 255, 255, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, var(--background-top) 0%, var(--background-bottom) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.6);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
}

.feature-item {
    background: rgba(255,255,255,0.6);
    padding: 20px;
    border-radius: 16px;
    text-align: left;
}

.feature-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    background: rgba(255,255,255,0.3);
}

footer a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Page specific styles */
.content-page {
    text-align: left;
    max-width: 800px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    margin: 20px auto;
}

.content-page h2 {
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 107, 74, 0.2);
    padding-bottom: 10px;
    margin-top: 30px;
}
