/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Main section */
main {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #fff; 
    overflow-x: hidden;
}

/* Creator Panel */
.creator-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box; /* Ensures padding is included in width calculations */
}

.creator-panel img {
    max-width: 100%;
    width: auto; /* Maintains the aspect ratio */
    height: auto; /* Ensures the image doesn't stretch */
}

/* Video */
.creator-panel video {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* Description Section */
.description {
    display: flex;
    flex-direction: row; /* Stack the content vertically for smaller screens */
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    gap: 40px;
    box-sizing: border-box;
}

.title-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
}

.title-description h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.title-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Creator Image */
.creator-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.creator-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.creator-image h1 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.creator-image h2 {
    font-size: 1.4rem;
    color: #00bfa5;
    margin: 5px 0 0;
}

/* General Container Styles */
.mission, .vision, .core-values {
    text-align: center;
    padding: 40px 20px;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
}

/* Heading Styles */
.mission h1, .vision h1, .core-values h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #00bfa5; /* Primary color */
    margin-bottom: 20px;
}

/* Subheading Styles */
.mission h2, .vision h2, .core-values h2 {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.6;
    color: #555;
    margin: 0;
    max-width: 900px; /* Ensure text doesn't stretch too wide */
    margin-left: auto;
    margin-right: auto;
}

/* Specific Section Styles */
.mission {
    background-color: #ffffff;
}

.vision {
    background-color: #e3f2fd; /* Soft blue for vision */
}

.core-values {
    background-color: #f3e5f5; /* Soft purple for core values */
}
/* Intro section styling */
.intro {
    width: 100vw; /* Full viewport width */
    background-color: #d6f5d6; /* Soft green background */
    padding: 50px 20px; /* Padding for breathing room */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center the text */
    margin-bottom: 40px;
}

/* Heading (h1) styling */
.intro h1 {
    font-size: 4rem; /* Larger font for the heading */
    font-family: 'Poppins', sans-serif; /* Modern, clean font */
    color: #2c5f2d; /* Darker green for contrast */
    margin-bottom: 20px; /* Space between the heading and paragraph */
}

/* Paragraph (p) styling */
.intro p {
    font-size: 1.5rem; /* Larger font for the paragraph */
    font-family: 'Arial', sans-serif; /* Simple and clean font */
    color: #333; /* Dark gray for readability */
    max-width: 1000px; /* Limit the width of the paragraph for readability */
    line-height: 1.8; /* Increased line height for better readability */
    margin: 0 auto; /* Center the paragraph horizontally */
}

@media screen and (max-width: 768px) {
    .description{
        flex-direction: column;
    }
}
