html {
}

body {
    background-color: var(--cream-05, #F5F3EF);
    color: white;
    margin: 0;
    padding: 0;
    font-family: 'Amazon Ember', Helvetica, sans-serif;
    font-weight: 100;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main > * {
    margin: 25px;
    display: block;
}

main {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px 10px 20px;
    box-sizing: border-box;
}

footer {
    position: relative;
    color: #000;
    line-height: 36px;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
}

.amazon_logo {
    height: 100px;
}

.spinner {
    height: 80px;
    padding: 35px;
}

.qr-section {
    margin-top: 20px;
}

.qr-text {
    color: #000;
    font-size: 14px;
    margin-bottom: 15px;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stores a {
    text-decoration: none;
}

.store_logo {
    height: 50px;
    padding: 0;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.qr-code-item {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
}

.qr-label {
    color: #000;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.message {
    height: auto;
    align-self: stretch;
    color: #000;
    text-align: center;
    font-family: 'Amazon Ember Display', 'Ember Modern Display Standard', 'Amazon Ember', Helvetica, Arial, sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 0 20px;
}

.message br {
    display: block;
}

.spinner {
    -webkit-animation: rotation .7s infinite linear;
    -moz-animation: rotation .7s infinite linear;
    -o-animation: rotation .7s infinite linear;
    animation: rotation .7s infinite linear;
    transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
}

@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to   {-o-transform: rotate(359deg);}
}
@keyframes rotation {
    from {transform: rotate(0deg);}
    to   {transform: rotate(359deg);}
}

.ground-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    z-index: -1;
}

.ground-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.side-decoration {
    position: fixed;
    bottom: 50px;
    pointer-events: none;
    z-index: -1;
    margin: 0;
    padding: 0;
}

.side-decoration.left {
    left: 0;
}

.side-decoration.right {
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-right: 20px;
}

.side-decoration img {
    height: 300px;
    width: auto;
    margin: 0;
    padding: 0;
    display: block;
}

.side-decoration.right img.plant {
    height: 150px;
}

.side-decoration.right img.group15 {
    height: 280px;
}

@media (max-width: 768px) {
    .side-decoration {
        display: none !important;
    }
    
    .side-decoration.left,
    .side-decoration.right {
        display: none !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: white;
    padding: 40px 20px;
    margin: 40px 0 20px;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

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

.faq-title {
    color: #232F3E;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #232F3E;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px;
    transition: color 0.3s;
}

.faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.faq-question:hover {
    color: #FF9900;
}

.faq-toggle {
    font-size: 24px;
    color: #FF9900;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

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

.faq-answer {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.8;
    display: none;
    margin-top: 10px;
    padding: 0 10px 10px;
    text-align: left;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin-bottom: 15px;
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: #0066C0;
    text-decoration: none;
    word-break: break-all;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer em {
    color: #666;
    font-style: italic;
}

@media (max-width: 900px) {
    main {
        padding: 20px 15px 20px;
    }
    
    .faq-section {
        padding: 30px 15px;
        margin: 30px 0 20px;
        border-radius: 6px;
    }
    
    footer {
        padding: 30px 20px;
    }
}

@media (max-width: 667px) {
    body {
        min-height: auto;
    }
    
    main {
        position: relative;
        padding: 15px 10px 15px;
    }
    
    main > * {
        margin: 15px;
    }
    
    .amazon_logo {
        height: 40px;
    }
    
    .spinner {
        height: 60px;
    }
    
    .message {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .qr-text {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .stores {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .store_logo {
        height: 35px;
        padding: 0;
    }
    
    .qr-codes {
        gap: 20px;
        margin-top: 15px;
    }
    
    .qr-code {
        width: 80px;
        height: 80px;
    }
    
    .qr-label {
        font-size: 11px;
        margin-top: 5px;
    }
    
    .faq-section {
        padding: 25px 15px;
        margin: 25px 0 15px;
        border-radius: 6px;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 8px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 0 8px 8px;
    }
    
    footer {
        font-size: 12px;
        line-height: 18px;
        padding: 25px 15px;
    }
}
