html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #242425;
    text-align: center;
}

header {
    background-color: #333;
    background-image: url('https://i.redd.it/nightfall-mirage-a-better-cs-go-mirage-night-map-v0-v3f5lys3b4na1.jpg?width=1920&format=pjpg&auto=webp&s=b6604e56d39694ce270880c129522d81b5adbab8');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 40px;
}

.logo img {
    width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-title {
    margin: 10px 0 0 0;
    font-size: 15px;
}
nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    position: relative;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: max-height 0.3s ease;
}

nav ul li {
    margin: 10px 5px;
}

nav ul li a {
    text-decoration: none;
    background-color: #121314;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid #121314;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
}

nav ul li a:hover {
    background-color: #333;
    color: white;
}

.social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #555;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

section {
    padding: 50px 20px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.description-section,
.packages-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #161616;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 1px solid #161616;
    color: #dcdcdc;
    font-family: Arial, sans-serif;
}

.description-section h2,
.packages-section h2 {
    font-size: 2rem;
    color: #cfcfcf;
    font-weight: 600;
    margin-bottom: 20px;
}

.description-section p,
.packages-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.description-section .highlight {
    font-weight: 500;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.package-card {
    background-color: #1f1f1f;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #161616;
    transition: transform 0.2s, box-shadow 0.2s;
}

.package-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.package-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.package-card.yellow h3 {
    color: #facc15;
}

.package-card.green h3 {
    color: #22c55e;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .description-section,
    .packages-section {
        padding: 30px 20px;
    }
}

.apply-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #161616;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 1px solid #161616;
    color: #cfcfcf;
    font-family: Arial, sans-serif;
}

.apply-section h2 {
    font-size: 2rem;
    color: #cfcfcf;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.apply-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.apply-section input,
.apply-section textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    resize: none;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.apply-section input:focus,
.apply-section textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 5px rgba(56, 189, 248, 0.5);
}

.apply-section button {
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.apply-section button:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .apply-section {
        padding: 30px 20px;
    }
}

.faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #161616;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 1px solid #161616;
    color: #dcdcdc;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    font-size: 2rem;
    color: #cfcfcf;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-left: 3px solid #38bdf8;
    padding-left: 15px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 1rem;
    color: #dcdcdc;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 30px 20px;
    }
}

footer {
    background-color: #121314;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p {
    margin: 10px 0;
}

.footer-content a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-social-icons {
    margin-top: 10px;
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #555;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 20px;
    }
    .hamburger {
        display: flex;
    }
    nav ul {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        width: 100%;
        background-color: #121314;
        border-radius: 5px;
        transition: max-height 0.3s ease-in-out;
    }
    nav ul.show {
        max-height: 500px;
    }
    nav ul li {
        margin: 5px 0;
        text-align: center;
        width: 100%;
    }
    nav ul li a {
        display: block;
        font-size: 18px;
        padding: 12px;
        color: #ffffff;
        background-color: #1f1f1f;
        border-bottom: 1px solid #333;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
        border-radius: 0;
    }
    nav ul li a:hover {
        background-color: #333;
        color: #ffffff;
    }
    .social-icons {
        position: static;
        margin-top: 20px;
        justify-content: center;
        text-align: center;
    }
    .social-icons a {
        font-size: 20px;
    }
    .footer-content {
        font-size: 14px;
    }
    .footer-social-icons a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 240px;
    }
    .header-title {
        font-size: 10px;
    }
    nav ul li a {
        font-size: 16px;
        padding: 10px;
    }
    .social-icons a {
        margin: 0 8px;
        font-size: 18px;
    }
    section {
        padding: 30px 15px;
    }
}