/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: rgb(18, 46, 43);;
    color: #333;
}

/* Header Section */
header {
    background-color: #4CAF50; /* Green */
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Sections */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #4CAF50; /* Green */
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

/* Video Container */
.video-container {
    text-align: center;
    margin: 20px 0;
}

/* Graph Section */
.graph-section {
    margin-top: 30px;
    text-align: center;
}

/* Image Container */
.image-container {
    text-align: center;
    margin: 20px 0;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Social Media Section */
#social-media {
    text-align: center;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #4CAF50; /* Green */
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333; /* Dark Gray */
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section {
        padding: 15px;
    }
}
