/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    background-color: #c471a3;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 90px 0 50px;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 10px auto 40px;
    line-height: 1.7;
    color: #444;
}

.cta-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: #111;
}

/* Notification Styles */
.notification-container {
    margin: 40px auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notification-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.notification-card:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notification-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 0.9rem;
}

.user-icon i {
    color: #666;
}

.success-icon i {
    color: #4CAF50;
}

.notification-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.orange-dot {
    background-color: #FF9800;
}

.green-dot {
    background-color: #4CAF50;
}

.notification-content {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    font-weight: 400;
}

.user-count, .claimer-name, .claimer-location, .gender-pronoun {
    font-weight: 500;
}

.claimer-name {
    color: #4CAF50;
}

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

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

.notification-card.new-claim {
    animation: pulse 0.8s ease-in-out;
}

.gift-card-container {
    margin: 50px auto;
    max-width: 500px;
    perspective: 1000px;
}

.gift-card {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.gift-card:hover {
    transform: rotate(-3deg) translateY(-5px);
}

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

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.step {
    background-color: white;
    border-radius: 12px;
    padding: 35px 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c471a3;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 1.8rem;
    color: #c471a3;
    margin: 15px 0;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #fff;
}

.quote-mark {
    font-size: 4rem;
    color: #c471a3;
    line-height: 1;
    margin-bottom: -20px;
}

.stars {
    margin: 20px 0;
    color: #FFD700;
    font-size: 1.2rem;
}

.quote {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
    font-weight: 500;
}

.author {
    color: #666;
}

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

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

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer CTA */
.footer-cta {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eaeaea;
}

footer p {
    margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
    }
    
    .quote {
        font-size: 1.2rem;
    }
}

/* Pink gradient background for gift card */
.gift-card {
    background: linear-gradient(135deg, #ffcdd2, #f8bbd0);
}
