:root {
    --accent-color: #FF5722;
}

.content0023 {
    background-color: #f5f6f7;
}

.newsletter-section {
    background-color: #2f3542;
    padding: 2rem;
    color: white;
    border-radius: 4px;
}

.get-updates-btn {
    background-color: var(--accent-color);
    border: none;
    width: 100%;
    padding: 0.75rem;
}

.get-updates-btn:hover {
    background-color: #e64a19;
}

.post-number {
    background-color: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.post-link {
    color: #2f3542;
    text-decoration: none;
    font-weight: 500;
}

.post-link:hover {
    color: var(--accent-color);
}

.email-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-title {
    color: #2f3542;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* template 2 */
.browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background-color: #FF5F57;
}

.dot-yellow {
    background-color: #FFBD2E;
}

.dot-green {
    background-color: #28C840;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content {
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/*  Template 3 (Banner) */

.banner-section_1 {
    height: 350px;
    position: relative;
    background: url('https://img.freepik.com/premium-photo/futuristic-education-with-open-book-graduation-cap-globe-earth-dark-background_1294398-3622.jpg') no-repeat center center;
    background-size: cover;
}

.banner-section_1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-section_1 .banner-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 8%;
}

.banner-section_1 .banner-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(90deg, #ffffff, #4facfe);
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    max-width: 600px;
}

/* .banner-section_1 .explore-btn {
    padding: 14px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-section_1 .explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.5);
}

.banner-section_1 .explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.banner-section_1 .explore-btn:hover::before {
    left: 100%;
} */

@media (max-width: 992px) {
    .banner-section_1 .banner-heading {
        font-size: 3rem;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .banner-section_1 .banner-heading {
        font-size: 2.5rem;
        max-width: 400px;
    }

    .banner-section_1 .banner-content {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .banner-section_1 .banner-heading {
        font-size: 2rem;
    }

    .banner-section_1 .explore-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}