@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #1a1a1a; /* Darker background for header/footer */
    --background-color: #121212; /* Main background color */
    --card-background: #1e1e1e; /* Background for sections */
    --text-color: #e0e0e0; /* Light text color for readability */
    --heading-color: #ffffff; /* White for main headings */
    --light-text-color: #fff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #333; /* Subtle separator */
}

header .logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.whatsapp-button {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

main {
    padding: 2rem 1rem;
}

section.your-turn {
    background-color: var(--card-background);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Adjusted for dark theme */
    text-align: center;
}

section h2 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    text-align: center;
}

.income-proof {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.income-proof img {
    max-width: 45%;
    border-radius: 8px;
}

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

ul li {
    margin-bottom: 0.5rem;
}

.testimonials .testimonial {
    background-color: #2a2a2a; /* Slightly lighter than card background */
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
    padding: 1rem;
}

.testimonials cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
}

.warning {
    text-align: center;
    font-weight: 600;
    color: #ff0000;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}

@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: wobble 2.5s infinite;
}

.floating-whatsapp img {
    width: 40px;
    height: 40px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@media (min-width: 769px) {
    main {
        max-width: 800px;
        margin: 0 auto; /* Center the content */
    }

    .income-proof {
        flex-direction: row; /* Keep images side-by-side */
        justify-content: space-around;
    }

    .income-proof img {
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .income-proof {
        flex-direction: column;
        align-items: center;
    }

    .income-proof img {
        max-width: 100%;
    }
}