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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header */
header {
    background-color: #007BFF;
    color: #fff;
    padding: 20px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-name {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 15px;
}

header h1 {
    font-size: 2em;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 1.2em;
    color: #fff;
    text-decoration: none;
}

.nav-link:hover {
    color: #FFD700;
}

/* Section Styling */
section {
    padding: 40px 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Text Content */
.text-content {
    flex: 1;
}

h2 {
    font-size: 2em;
    color: #007BFF;
}

h3 {
    font-size: 1.5em;
}

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

p {
    font-size: 1.1em;
}

/* Image Content */
.image-content {
    flex: 1;
    display: flex;
    flex-direction: column; /* Align images vertically */
    gap: 20px;
}

.vertical-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vertical-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Storyboard Viewer Section */
.storyboard-section {
    text-align: center;
    margin: 40px auto;
}

.storyboard-section h2 {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 10px;
}

.storyboard-section p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

/* PDF Viewer */
.pdf-viewer {
    margin: 20px auto;
    max-width: 1200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

iframe {
    border: none;
    width: 100%;
    height: 600px;
}

/* Full Course Button */
.full-course-section {
    text-align: center;
    margin: 40px 0;
}

.btn-full-course {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #fff;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-full-course:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #007BFF;
    color: #fff;
}
