/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 85%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: #ffffff;
    color: #333;
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #e5e5e5;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: normal;
}

/* Video Section */
#video {
    padding: 40px 0;
    background: #f7f7f7;
    text-align: center;
}

#video h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #333;
    font-weight: normal;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border: 1px solid #ddd;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Text Section */
#content {
    padding: 40px 0;
    text-align: center; /* Center the text within the content section */
}

#content h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

#content p {
    font-size: 1.15em;
    line-height: 1.8;
    margin: auto;
    max-width: 800px;
    color: #444;
    text-align: center; /* Center-align the paragraph text */
}

/* Link Styling */
#content a {
    color: inherit; /* Make the link the same color as the surrounding text */
    text-decoration: none; /* Remove the underline */
    border-bottom: 1px solid #ccc; /* Optional: Add a subtle underline */
    padding-bottom: 2px; /* Optional: Add spacing for the underline */
}

#content a:hover {
    border-bottom-color: #999; /* Darken the underline on hover */
}

/* Footer Styles */
footer {
    background: #ffffff;
    color: #777;
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #e5e5e5;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    #content p {
        font-size: 1em;
    }

    #video h2 {
        font-size: 1.5em;
    }
}
