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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f6f3;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #c8102e 100%);
    color: #f8f6f3;
    padding: 60px 20px;
    text-align: center;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border: 4px solid #f8f6f3;
    object-fit: cover;
}

.brand {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: #c8102e;
    color: #f8f6f3;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #f8f6f3;
}

.cta-button:hover {
    background-color: #f8f6f3;
    color: #c8102e;
    border-color: #c8102e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.8;
    color: #333;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: #f8f6f3;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #c8102e;
    color: #f8f6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step p {
    color: #555;
    line-height: 1.6;
}

.step a {
    color: #c8102e;
    text-decoration: none;
    font-weight: bold;
}

.step a:hover {
    text-decoration: underline;
}

/* Sample Songs Section */
.samples {
    padding: 80px 20px;
    background-color: #ffffff;
}

.samples h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.audio-card {
    background-color: #f8f6f3;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.audio-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.audio-card audio {
    width: 100%;
    margin-top: 10px;
}

/* Sample Songs Section */
.samples {
    padding: 80px 20px;
    background-color: #ffffff;
}

.samples h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

.spotify-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.spotify-card {
    background-color: #f8f6f3;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background-color: #f8f6f3;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #c8102e 100%);
    color: #f8f6f3;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8f6f3;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-info {
    margin-top: 30px;
}

.email-button {
    display: inline-block;
    background-color: #f8f6f3;
    color: #1e3a5f;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 2px solid #f8f6f3;
}

.email-button:hover {
    background-color: transparent;
    color: #f8f6f3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.venmo-info {
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #f8f6f3;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .about h2,
    .how-it-works h2,
    .samples h2,
    .faq h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .audio-grid {
        grid-template-columns: 1fr;
    }
}
