/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Header */
.site-header {
    background-color: #111;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header h1 {
    font-size: 24px;
    color: #ffffff;
}

.site-header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header nav a:hover {
    color: #00ffd5;
}

/* Hero Section */
.hero {
    /* height: 90vh; */
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #b7f5eb;
}

.hero p {
    font-size: 15px;
    color: #cccccc;
    text-align: justify;
}

/* Button */
.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #c0f8ef;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #00e0be;
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
      .hero h1,
    .hero p,
    #more-info,
    #more-info h3,
    .faq-section,
    .faq-question,
    .faq-answer {
        text-align: start; /* or text-align: left; */
    }

    .faq-question::after {
        right: 10px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header nav {
        margin-top: 10px;
    }
}
#more-info {
    max-width: 900px;
    margin: 40px auto;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    color: #ddd;
    line-height: 1.8;
}

#more-info h3 {
    color: #dfeeeb;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: justify;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(189, 239, 230, 0.4);
}
.faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.faq-section h2 {
    text-align: center;
    color: #d0f1ec;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #222;
}

.faq-question.open::after {
    content: "–";
    position: absolute;
    right: 20px;
    font-size: 24px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 24px;
}

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Social Icons Fixed Sidebar */
.social-icons {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.social-icons .icon {
    width: 20px;
    height: 20px;
    background-color: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.social-icons .icon:hover {
    background-color: #ddf5f1;
    color: #000;
}

.social-icons .fb { background-color: #3b5998; }
.social-icons .ig { background-color: #e1306c; }
.social-icons .tw { background-color: #1da1f2; }
.advertising-banner {
    text-align: center;
    padding: 40px 0;
    background-color: #1a1a1a;
}

.advertising-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 213, 0.1);
    transition: transform 0.3s ease;
}

.advertising-banner img:hover {
    transform: scale(1.02);
}
