/* Global Colors */
:root {
    --color-primary: rgb(174, 181, 86); /* Matcha Green */
    --color-action: rgb(255, 137, 1);   /* Energy Orange */
    --bg-color: #FAFAFA;
    --text-color: #333333;
    --font-stack: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 480px; /* Mobile focused */
    margin: 0 auto;
    padding: 24px;
    background-color: #FFFFFF;
    min-height: 100vh;
}

/* SEKCJA A: Nagłówek */
.header-section {
    margin-bottom: 24px;
    text-align: left;
}

.header-section h1 {
    color: var(--color-primary);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
}

/* SEKCJA B: Zdjęcie */
.visual-section {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    border: 3px solid var(--color-primary);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* SEKCJA C: Lista Korzyści */
.content-section {
    margin-bottom: 32px;
    padding: 16px;
    background-color: rgba(174, 181, 86, 0.1); /* 10% opacity green background */
    border-radius: 12px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list .icon {
    color: var(--color-primary);
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefits-list .text {
    font-size: 16px;
    color: #333333;
}

.highlight {
    color: var(--color-primary);
    font-weight: 700;
}

/* SEKCJA E: Separator */
.separator {
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto 32px auto;
    width: 80%;
    opacity: 0.3;
}

/* SEKCJA D: Przycisk Zakupu */
.cta-section {
    text-align: center;
    padding-bottom: 48px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-action);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 8px 24px rgba(174, 181, 86, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse 2s infinite;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(174, 181, 86, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 137, 1, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 137, 1, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 137, 1, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .header-section h1 {
        font-size: 22px;
    }
    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}
