/* SMM Specialist Styles */
h1, h2, h3 {
    color: #007bff;
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 3rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #000000;
}

li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000000;
}

nav ul li {
    margin-bottom: 0;
}

.footer-text {
    color: white;
}

.background-image-section {
    width: 100%;
    background-color: #007bff;
}

/* Hero Section */
.hero {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    /* background-color: #000000; */
    margin-bottom: 5rem;
    background: #b9fcdf;
}

.hero-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
}


.hero-text {
    font-size: 1.2rem;
    margin-top: 3rem;
    color: #272727;
    margin-bottom: 2rem;
}

.flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-image {
    width: 400px;
    border-radius: 15px;
    margin-left: 3rem;
}

/* Section Styles */
.section {
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
}

th, td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f1f1f1;
    font-weight: 600;
    font-size: 1.2rem;
}

/* .back-button {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
} */

.text-accent {
    margin-right: 0.3rem;
    color: #b98e00;
    font-weight: bold;
}

.star-block {
    background-color: #eeeade;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.star-block h3 {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2rem 1rem;
    }
    
    .flex-wrapper {
        flex-direction: column;
    }
    
    .section {
        padding: 1.5rem;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;
    }
}