/* General Styles */
body {
    background-color: #ffffff;
    color: #222;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #222; /* dark background for header */
    padding: 20px;
    text-align: center;
}

header img {
    height: 120px; /* Bigger logo */
}

h1, h2 {
    color: #2b7a78;
    margin: 20px 0 10px;
    text-align: center;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Actions Buttons */
.actions {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.actions button,
.button-link {
    background-color: #3fa34d;
    color: white;
    padding: 12px 20px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.actions button:hover,
.button-link:hover {
    background-color: #34953f;
}

/* Video Section */
.video {
    text-align: center;
}

center;
}
.video-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* Countdown Timer */
.countdown {
    text-align: center;
    margin: 40px 0;
}
#timer {
    font-size: 28px;
    font-weight: bold;
    color: #2b7a78;
}

/* Roadmap Section */
.roadmap-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.roadmap-text {
    flex: 1;
    min-width: 300px;
}

.roadmap-image {
    flex: 1;
    min-width: 300px;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: space-around; /* changed to space-around */
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 220px; /* fixed width to align members */
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #3fa34d;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background: #3fa34d;
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.faq-question.active {
    background: #34953f;
}

/* Press & News Section */
.news {
    text-align: center;
    margin: 40px 0;
}

.news-list article {
    margin-bottom: 20px;
    background: #eef9ee;
    padding: 20px;
    border-radius: 8px;
}

.news-list article h3 {
    margin-top: 0;
    color: #2b7a78;
}

/* Footer */
footer {
    background-color: #ffffff;
    text-align: center;
    padding: 10px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #ddd;
}

/* Max-width container for all */
header, main, footer {
    max-width: 1200px;
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .actions {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-flex {
        flex-direction: column;
    }
    .team-grid {
        flex-direction: column;
    }
}
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3fa34d;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
