/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
}

/* Header Styles */
header {
    background-color: white;
    padding: 15px 5%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.schedule-btn {
    background-color: white;
    border: 1px solid #ccc;
    color: #555;
    padding: 8px 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.schedule-btn:hover {
    background-color: #f5f5f5;
}

/* Hero Section */
.hero {
    min-height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center top 10%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 280px;
    background-color: rgba(0, 51, 102, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    width: 100%;
}

.logo {
    width: 240px;
    margin-right: 20px;
}

.hero h1 {
    font-size: 48px;
    letter-spacing: 2px;
    font-weight: 400;
}

.hero h1 strong {
    font-weight: 700;
}

/* About Section */
.about {
    padding: 50px 5%;
    background-color: #fff;
}

.about-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.about p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.about strong {
    font-weight: 600;
}

/* Video Section */
.about-video {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
}

.video-container {
    width: 100%;
    max-width: 500px;
    height: 890px;
    position: relative;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-logo {
    max-width: 50%;
    max-height: 50%;
    margin-bottom: 20px;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

#promo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

/* Pricing Section */
.pricing {
    background-color: #f5f5f5;
    padding: 50px 5%;
    margin-bottom: -1px;
}

.price-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.price-circle {
    background-color: white;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.first-bin {
    margin-right: 20px;
}

.price-circle h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #555;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    padding: 30px 5%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo strong {
    font-weight: 700;
}

.social-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons,
.payment-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-icons img {
    width: 48px;
    height: 48px;
}

.payment-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icon img {
    max-width: 48px;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .price-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .first-bin {
        margin-right: 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .logo {
        width: 180px;
        margin-right: 0;
    }
}