/* NanumSquare Font Import */
@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css');

/* Alternative: If you have local font files, use this instead:
@font-face {
    font-family: 'NanumSquare';
    font-weight: 400;
    src: url('../fonts/NanumSquareR.eot');
    src: url('../fonts/NanumSquareR.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NanumSquareR.woff') format('woff'),
         url('../fonts/NanumSquareR.ttf') format('truetype');
}

@font-face {
    font-family: 'NanumSquare';
    font-weight: 700;
    src: url('../fonts/NanumSquareB.eot');
    src: url('../fonts/NanumSquareB.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NanumSquareB.woff') format('woff'),
         url('../fonts/NanumSquareB.ttf') format('truetype');
}

@font-face {
    font-family: 'NanumSquare';
    font-weight: 800;
    src: url('../fonts/NanumSquareEB.eot');
    src: url('../fonts/NanumSquareEB.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NanumSquareEB.woff') format('woff'),
         url('../fonts/NanumSquareEB.ttf') format('truetype');
}

@font-face {
    font-family: 'NanumSquare';
    font-weight: 300;
    src: url('../fonts/NanumSquareL.eot');
    src: url('../fonts/NanumSquareL.eot?#iefix') format('embedded-opentype'),
         url('../fonts/NanumSquareL.woff') format('woff'),
         url('../fonts/NanumSquareL.ttf') format('truetype');
}
*/

/* HTML Base Styles */
html {
    height: 100%;
}

/* Global Font Settings */
* {
    font-family: 'NanumSquare', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    font-family: 'NanumSquare', sans-serif;
    margin: 0;
    padding: 0;
    height: auto;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'NanumSquare', sans-serif;
    font-weight: 700;
    margin: 0;
}

p, span, div, a, li, ul, ol {
    font-family: 'NanumSquare', sans-serif;
}

button, input, textarea, select {
    font-family: 'NanumSquare', sans-serif;
}

/* Layout */
#main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-top: -80px;
}

/* Section Base Styles */
section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Section1 Styles */
.section1 {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 4rem;
    margin-top: 0;
    padding-top: 100px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.85) 50%, rgba(26, 37, 47, 0.85) 100%),
                url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.section1-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    box-sizing: border-box;
}

.section1-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section1-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section1-info {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.section1-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ffffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section1-time {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    word-wrap: break-word;
}

.section1-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section1-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    white-space: nowrap;
}

.section1-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.section1-cta:active {
    transform: translateY(-1px);
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .section1 {
        min-height: 90vh;
        padding: 0 2rem 3rem;
    }

    .section1-content {
        padding: 0 0.5rem;
    }

    .section1-title {
        font-size: 2.8rem;
    }

    .section1-subtitle {
        font-size: 1.3rem;
    }

    .section1-info {
        padding: 2.5rem;
        max-width: 90%;
    }

    .section1-description {
        font-size: 1.1rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .section1 {
        min-height: 100vh;
        padding: 0 1rem 3rem;
        padding-top: 100px;
        max-width: 100vw;
    }

    .section1-content {
        margin-bottom: 3rem;
        padding: 0;
        max-width: 100%;
        margin-top: 1rem;
    }

    .section1-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .section1-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .section1-info {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin: 0 1rem;
    }

    .section1-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section1-time {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .section1-location {
        font-size: 1rem;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .location-icon {
        font-size: 1.3rem;
    }

    .section1-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: auto;
        max-width: 90%;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .section1 {
        padding: 0 0.75rem 2rem;
        padding-top: 95px;
        min-height: 100vh;
    }

    .section1-content {
        margin-bottom: 2.5rem;
        margin-top: 1rem;
    }

    .section1-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }

    .section1-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .section1-info {
        width: calc(100% - 1.5rem);
        max-width: calc(100% - 1.5rem);
        padding: 1.5rem 1rem;
        margin: 0 0.75rem;
        border-radius: 12px;
    }

    .section1-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .section1-time {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .section1-location {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .location-icon {
        font-size: 1.2rem;
    }

    .section1-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: auto;
        max-width: 85%;
    }
}

/* Extra Small Mobile Styles */
@media screen and (max-width: 360px) {
    .section1 {
        padding: 0 0.5rem 1.5rem;
        padding-top: 90px;
    }

    .section1-content {
        margin-top: 1rem;
    }

    .section1-title {
        font-size: 1.6rem;
    }

    .section1-subtitle {
        font-size: 0.95rem;
    }

    .section1-info {
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        padding: 1.25rem 0.75rem;
        margin: 0 0.5rem;
    }

    .section1-description {
        font-size: 0.9rem;
    }

    .section1-time {
        font-size: 0.95rem;
    }

    .section1-location {
        font-size: 0.85rem;
    }

    .section1-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Section2 Styles */
.section2 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section2-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section2-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.section2-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
}

.section2-image-wrapper {
    flex: 1;
    max-width: 500px;
}

.section2-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.section2-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section2-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section2-welcome {
    margin-top: 4rem;
    width: 100%;
}

.section2-welcome-content {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section2-welcome-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.section2-welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 2rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section2-welcome-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    box-sizing: border-box;
    white-space: nowrap;
}

.section2-welcome-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background-color: #5568d3;
}

.section2-welcome-button:active {
    transform: translateY(-1px);
}

/* Section2 Leadership Styles */
.section2-leadership {
    margin-top: 4rem;
    width: 100%;
}

.section2-leadership-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: rgba(102, 126, 234, 0.05);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section2-leadership-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section2-leadership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section2-leadership-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

.section2-leadership-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.section2-leadership-quote::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.section2-leadership-quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    color: #444;
    margin: 0;
    font-style: italic;
    padding-left: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section2-leadership-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section2-leadership-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section2-leadership-signature {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    text-align: right;
}

.section2-leadership-signature-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.section2-leadership-signature-title {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin: 0 0 0.25rem 0;
}

.section2-leadership-signature-org {
    font-size: 0.95rem;
    font-weight: 400;
    color: #777;
    margin: 0;
}

/* Tablet Styles for Section2 */
@media screen and (max-width: 1024px) {
    .section2 {
        padding: 5rem 2rem;
    }

    .section2-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section2-content {
        gap: 2.5rem;
    }

    .section2-image-wrapper {
        max-width: 400px;
    }

    .section2-text {
        font-size: 1.05rem;
    }

    .section2-welcome {
        margin-top: 3rem;
    }

    .section2-welcome-content {
        padding: 2.5rem;
    }

    .section2-welcome-title {
        font-size: 1.6rem;
    }

    .section2-welcome-text {
        font-size: 1.05rem;
    }

    .section2-leadership {
        margin-top: 3rem;
    }

    .section2-leadership-content {
        padding: 3rem;
        gap: 2rem;
    }

    .section2-leadership-profile {
        width: 200px;
        height: 200px;
        border-width: 3px;
    }

    .section2-leadership-subtitle {
        font-size: 1.6rem;
    }

    .section2-leadership-quote-text {
        font-size: 1.3rem;
    }

    .section2-leadership-text {
        font-size: 1.05rem;
    }
}

/* Mobile Styles for Section2 */
@media screen and (max-width: 768px) {
    .section2 {
        padding: 4rem 1.5rem;
    }

    .section2-container {
        padding: 0;
    }

    .section2-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section2-content {
        flex-direction: column;
        gap: 2rem;
    }

    .section2-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .section2-image {
        border-radius: 10px;
    }

    .section2-text-content {
        gap: 1.25rem;
    }

    .section2-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section2-welcome {
        margin-top: 3rem;
    }

    .section2-welcome-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .section2-welcome-title {
        font-size: 1.4rem;
    }

    .section2-welcome-text {
        font-size: 1rem;
    }

    .section2-welcome-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .section2-leadership {
        margin-top: 3rem;
    }

    .section2-leadership-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.75rem;
    }

    .section2-leadership-profile {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    .section2-leadership-subtitle {
        font-size: 1.4rem;
    }

    .section2-leadership-quote::before {
        font-size: 3rem;
        left: -1rem;
        top: -0.25rem;
    }

    .section2-leadership-quote-text {
        font-size: 1.2rem;
        padding-left: 0.5rem;
        line-height: 1.7;
    }

    .section2-leadership-description {
        gap: 1rem;
    }

    .section2-leadership-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section2-leadership-signature {
        margin-top: 0.75rem;
        padding-top: 1.5rem;
        text-align: left;
    }

    .section2-leadership-signature-text {
        font-size: 1.1rem;
    }

    .section2-leadership-signature-title {
        font-size: 0.95rem;
    }

    .section2-leadership-signature-org {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles for Section2 */
@media screen and (max-width: 480px) {
    .section2 {
        padding: 3rem 1rem;
    }

    .section2-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section2-content {
        gap: 1rem;
    }

    .section2-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section2-welcome {
        margin-top: 2.5rem;
    }

    .section2-welcome-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .section2-welcome-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .section2-welcome-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section2-welcome-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .section2-leadership {
        margin-top: 2.5rem;
    }

    .section2-leadership-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .section2-leadership-profile {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }

    .section2-leadership-subtitle {
        font-size: 1.2rem;
    }

    .section2-leadership-quote::before {
        font-size: 2.5rem;
        left: -0.75rem;
    }

    .section2-leadership-quote-text {
        font-size: 1.1rem;
        padding-left: 0.25rem;
    }

    .section2-leadership-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section2-leadership-signature {
        margin-top: 0.5rem;
        padding-top: 1.25rem;
    }

    .section2-leadership-signature-text {
        font-size: 1rem;
    }

    .section2-leadership-signature-title {
        font-size: 0.9rem;
    }

    .section2-leadership-signature-org {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Styles for Section2 */
@media screen and (max-width: 360px) {
    .section2 {
        padding: 2.5rem 0.75rem;
    }

    .section2-title {
        font-size: 1.4rem;
    }

    .section2-text {
        font-size: 0.9rem;
    }

    .section2-welcome {
        margin-top: 2rem;
    }

    .section2-welcome-content {
        padding: 1.25rem 0.75rem;
        border-radius: 10px;
    }

    .section2-welcome-title {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }

    .section2-welcome-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .section2-welcome-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .section2-leadership {
        margin-top: 2rem;
    }

    .section2-leadership-content {
        padding: 1.25rem 0.75rem;
        gap: 1.25rem;
    }

    .section2-leadership-profile {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .section2-leadership-subtitle {
        font-size: 1.1rem;
    }

    .section2-leadership-quote-text {
        font-size: 1rem;
    }

    .section2-leadership-text {
        font-size: 0.9rem;
    }

    .section2-leadership-signature-text {
        font-size: 0.95rem;
    }
}

/* Section3 Styles */
.section3 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 249, 250, 0.75) 100%),
                url('../img/IMG_1304-1.png') center/cover no-repeat;
    background-attachment: fixed;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.section3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.section3-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section3-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.section3-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section3-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 1rem 0;
}

.section3-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section3-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section3-list-item {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    word-wrap: break-word;
}

.section3-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tablet Styles for Section3 */
@media screen and (max-width: 1024px) {
    .section3 {
        padding: 5rem 2rem;
    }

    .section3-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section3-subtitle {
        font-size: 1.6rem;
    }

    .section3-text {
        font-size: 1.05rem;
    }

    .section3-list-item {
        font-size: 1.05rem;
    }
}

/* Mobile Styles for Section3 */
@media screen and (max-width: 768px) {
    .section3 {
        padding: 4rem 1.5rem;
    }

    .section3-container {
        padding: 0;
    }

    .section3-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section3-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .section3-content {
        gap: 1.25rem;
    }

    .section3-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section3-list {
        gap: 0.875rem;
        margin: 0.875rem 0;
    }

    .section3-list-item {
        font-size: 1rem;
        padding-left: 1.25rem;
    }

    .section3-list-item::before {
        font-size: 1.1rem;
    }
}

/* Small Mobile Styles for Section3 */
@media screen and (max-width: 480px) {
    .section3 {
        padding: 3rem 1rem;
    }

    .section3-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section3-subtitle {
        font-size: 1.2rem;
    }

    .section3-content {
        gap: 1rem;
    }

    .section3-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section3-list {
        gap: 0.75rem;
        margin: 0.75rem 0;
    }

    .section3-list-item {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
}

/* Extra Small Mobile Styles for Section3 */
@media screen and (max-width: 360px) {
    .section3 {
        padding: 2.5rem 0.75rem;
    }

    .section3-title {
        font-size: 1.4rem;
    }

    .section3-subtitle {
        font-size: 1.1rem;
    }

    .section3-text {
        font-size: 0.9rem;
    }

    .section3-list-item {
        font-size: 0.9rem;
    }
}

/* Section4 Styles */
.section4 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(52, 73, 94, 0.7) 50%, rgba(26, 37, 47, 0.7) 100%),
                url('../img/IMG_1304-1.png') center/cover no-repeat;
    background-attachment: scroll;
    color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.section4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.section4-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section4-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section4-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section4-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section4-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.time-icon {
    font-size: 1.5rem;
}

.time-text {
    font-weight: 600;
}

.section4-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section4-expect {
    margin-top: 1rem;
}

.section4-expect-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section4-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section4-list-item {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    padding-left: 2rem;
    position: relative;
    word-wrap: break-word;
}

.section4-list-item::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.section4-message {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.section4-message-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles for Section4 */
@media screen and (max-width: 1024px) {
    .section4 {
        padding: 5rem 2rem;
    }

    .section4-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section4-content {
        padding: 2.5rem;
    }

    .section4-subtitle {
        font-size: 1.6rem;
    }

    .section4-time {
        font-size: 1.2rem;
    }

    .section4-text {
        font-size: 1.05rem;
    }

    .section4-expect-title {
        font-size: 1.4rem;
    }

    .section4-list-item {
        font-size: 1.05rem;
    }

    .section4-message-text {
        font-size: 1.2rem;
    }
}

/* Mobile Styles for Section4 */
@media screen and (max-width: 768px) {
    .section4 {
        padding: 4rem 1.5rem;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(52, 73, 94, 0.6) 50%, rgba(26, 37, 47, 0.6) 100%),
                    url('../img/IMG_1304-1.png') center/cover no-repeat;
        background-attachment: scroll;
    }

    .section4-container {
        padding: 0;
    }

    .section4-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section4-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.5rem;
    }

    .section4-subtitle {
        font-size: 1.4rem;
    }

    .section4-time {
        font-size: 1.1rem;
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .time-icon {
        font-size: 1.3rem;
    }

    .section4-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section4-expect {
        margin-top: 0.75rem;
    }

    .section4-expect-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section4-list {
        gap: 0.875rem;
    }

    .section4-list-item {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .section4-list-item::before {
        font-size: 1.1rem;
    }

    .section4-message {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .section4-message-text {
        font-size: 1.1rem;
    }
}

/* Small Mobile Styles for Section4 */
@media screen and (max-width: 480px) {
    .section4 {
        padding: 3rem 1rem;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.55) 0%, rgba(52, 73, 94, 0.55) 50%, rgba(26, 37, 47, 0.55) 100%),
                    url('../img/IMG_1304-1.png') center/cover no-repeat;
        background-attachment: scroll;
    }

    .section4-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section4-content {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .section4-subtitle {
        font-size: 1.2rem;
    }

    .section4-time {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .section4-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section4-expect-title {
        font-size: 1.2rem;
    }

    .section4-list {
        gap: 0.75rem;
    }

    .section4-list-item {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }

    .section4-message {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .section4-message-text {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Styles for Section4 */
@media screen and (max-width: 360px) {
    .section4 {
        padding: 2.5rem 0.75rem;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(52, 73, 94, 0.5) 50%, rgba(26, 37, 47, 0.5) 100%),
                    url('../img/IMG_1304-1.png') center/cover no-repeat;
        background-attachment: scroll;
    }

    .section4-title {
        font-size: 1.4rem;
    }

    .section4-content {
        padding: 1.25rem 0.75rem;
    }

    .section4-subtitle {
        font-size: 1.1rem;
    }

    .section4-time {
        font-size: 0.95rem;
    }

    .section4-text {
        font-size: 0.9rem;
    }

    .section4-expect-title {
        font-size: 1.1rem;
    }

    .section4-list-item {
        font-size: 0.9rem;
    }

    .section4-message-text {
        font-size: 0.95rem;
    }
}

/* Section5 Styles */
.section5 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section5-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section5-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.section5-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.section5-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section5-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    margin: 0;
}

.section5-address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    padding-left: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    position: relative;
}

.section5-address::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #667eea;
    border-radius: 12px 0 0 12px;
}

.section5-address-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.section5-address-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.section5-address-note {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.section5-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section5-contact {
    margin-top: 2rem;
    text-align: left;
}

.section5-contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section5-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.section5-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.kakao-map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 다음 지도 퍼가기 스타일 */
.root_daum_roughmap {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.root_daum_roughmap iframe {
    width: 100% !important;
    border-radius: 12px;
}

/* Tablet Styles for Section5 */
@media screen and (max-width: 1024px) {
    .section5 {
        padding: 5rem 2rem;
    }

    .section5-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section5-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section5-subtitle {
        font-size: 1.6rem;
    }

    .section5-address-name {
        font-size: 1.2rem;
    }

    .section5-address-detail {
        font-size: 1.05rem;
    }

    .section5-text {
        font-size: 1.05rem;
    }

    .kakao-map-container {
        height: 350px;
    }

    .section5-map {
        min-height: 350px;
    }

    .root_daum_roughmap {
        width: 100% !important;
        max-width: 100% !important;
    }

    .root_daum_roughmap iframe {
        width: 100% !important;
        height: 350px !important;
    }
}

/* Mobile Styles for Section5 */
@media screen and (max-width: 768px) {
    .section5 {
        padding: 4rem 1.5rem;
    }

    .section5-container {
        padding: 0;
    }

    .section5-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section5-content {
        gap: 2rem;
    }

    .section5-subtitle {
        font-size: 1.4rem;
    }

    .section5-address {
        padding: 1.25rem;
    }

    .section5-address-name {
        font-size: 1.1rem;
    }

    .section5-address-detail {
        font-size: 1rem;
    }

    .section5-address-note {
        font-size: 0.95rem;
    }

    .section5-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section5-contact {
        margin-top: 1.5rem;
    }

    .section5-contact-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .kakao-map-container {
        height: 300px;
    }

    .section5-map {
        min-height: 300px;
    }

    .root_daum_roughmap {
        width: 100% !important;
        max-width: 100% !important;
    }

    .root_daum_roughmap iframe {
        width: 100% !important;
        height: 300px !important;
    }
}

/* Small Mobile Styles for Section5 */
@media screen and (max-width: 480px) {
    .section5 {
        padding: 3rem 1rem;
    }

    .section5-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section5-content {
        gap: 1.5rem;
    }

    .section5-subtitle {
        font-size: 1.2rem;
    }

    .section5-address {
        padding: 1rem;
    }

    .section5-address-name {
        font-size: 1rem;
    }

    .section5-address-detail {
        font-size: 0.95rem;
    }

    .section5-address-note {
        font-size: 0.9rem;
    }

    .section5-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section5-contact {
        margin-top: 1.25rem;
    }

    .section5-contact-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .kakao-map-container {
        height: 250px;
    }

    .section5-map {
        min-height: 250px;
    }

    .root_daum_roughmap {
        width: 100% !important;
        max-width: 100% !important;
    }

    .root_daum_roughmap iframe {
        width: 100% !important;
        height: 250px !important;
    }
}

/* Extra Small Mobile Styles for Section5 */
@media screen and (max-width: 360px) {
    .section5 {
        padding: 2.5rem 0.75rem;
    }

    .section5-title {
        font-size: 1.4rem;
    }

    .section5-subtitle {
        font-size: 1.1rem;
    }

    .section5-address-name {
        font-size: 0.95rem;
    }

    .section5-address-detail {
        font-size: 0.9rem;
    }

    .section5-text {
        font-size: 0.9rem;
    }

    .section5-contact {
        margin-top: 1rem;
    }

    .section5-contact-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .kakao-map-container {
        height: 220px;
    }

    .section5-map {
        min-height: 220px;
    }

    .root_daum_roughmap {
        width: 100% !important;
        max-width: 100% !important;
    }

    .root_daum_roughmap iframe {
        width: 100% !important;
        height: 220px !important;
    }
}

/* Section6 Styles */
.section6 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-image: url('../img/ceo-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.section6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 0;
}

.section6-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section6-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section6-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section6-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section6-profile-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.section6-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section6-quote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.section6-quote::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.section6-quote-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    padding-left: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section6-description {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section6-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section6-signature {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: right;
}

.section6-signature-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section6-signature-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.25rem 0;
}

.section6-signature-org {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Tablet Styles for Section6 */
@media screen and (max-width: 1024px) {
    .section6 {
        padding: 5rem 2rem;
        background-image: url('../img/ceo-img.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section6::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.65) 0%, rgba(118, 75, 162, 0.65) 100%);
    }

    .section6-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section6-content {
        padding: 3rem;
        gap: 2rem;
    }
    
    .section6-profile {
        width: 200px;
        height: 200px;
        border-width: 3px;
    }

    .section6-subtitle {
        font-size: 1.6rem;
    }

    .section6-quote-text {
        font-size: 1.3rem;
    }

    .section6-text {
        font-size: 1.05rem;
    }

    .section6-signature-text {
        font-size: 1.1rem;
    }
}

/* Mobile Styles for Section6 */
@media screen and (max-width: 768px) {
    .section6 {
        padding: 4rem 1.5rem;
        background-image: url('../img/ceo-img.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section6::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%);
    }

    .section6-container {
        padding: 0;
    }

    .section6-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section6-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.75rem;
    }
    
    .section6-profile {
        width: 150px;
        height: 150px;
        border-width: 3px;
    }

    .section6-subtitle {
        font-size: 1.4rem;
    }

    .section6-quote::before {
        font-size: 3rem;
        left: -1rem;
        top: -0.25rem;
    }

    .section6-quote-text {
        font-size: 1.2rem;
        padding-left: 0.5rem;
        line-height: 1.7;
    }

    .section6-description {
        gap: 1rem;
    }

    .section6-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section6-signature {
        margin-top: 0.75rem;
        padding-top: 1.5rem;
        text-align: left;
    }

    .section6-signature-text {
        font-size: 1.1rem;
    }

    .section6-signature-title {
        font-size: 0.95rem;
    }

    .section6-signature-org {
        font-size: 0.9rem;
    }
}

/* Small Mobile Styles for Section6 */
@media screen and (max-width: 480px) {
    .section6 {
        padding: 3rem 1rem;
        background-image: url('../img/ceo-img.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section6::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.55) 0%, rgba(118, 75, 162, 0.55) 100%);
    }

    .section6-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section6-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .section6-profile {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }

    .section6-subtitle {
        font-size: 1.2rem;
    }

    .section6-quote::before {
        font-size: 2.5rem;
        left: -0.75rem;
    }

    .section6-quote-text {
        font-size: 1.1rem;
        padding-left: 0.25rem;
    }

    .section6-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section6-signature {
        margin-top: 0.5rem;
        padding-top: 1.25rem;
    }

    .section6-signature-text {
        font-size: 1rem;
    }

    .section6-signature-title {
        font-size: 0.9rem;
    }

    .section6-signature-org {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile Styles for Section6 */
@media screen and (max-width: 360px) {
    .section6 {
        padding: 2.5rem 0.75rem;
        background-image: url('../img/ceo-img.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section6::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
    }

    .section6-title {
        font-size: 1.4rem;
    }

    .section6-content {
        padding: 1.25rem 0.75rem;
    }
    
    .section6-profile {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .section6-subtitle {
        font-size: 1.1rem;
    }

    .section6-quote-text {
        font-size: 1rem;
    }

    .section6-text {
        font-size: 0.9rem;
    }

    .section6-signature-text {
        font-size: 0.95rem;
    }
}

/* Section7 Styles */
.section7 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section7-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section7-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.section7-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background-color: #f8f9fa;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section7-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    margin: 0;
    text-align: center;
}

.section7-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section7-list-item {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    padding-left: 2.5rem;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section7-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.section7-message {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.section7-message-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    color: #667eea;
    margin: 0.5rem 0;
}

/* Tablet Styles for Section7 */
@media screen and (max-width: 1024px) {
    .section7 {
        padding: 5rem 2rem;
    }

    .section7-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section7-content {
        padding: 3rem;
        gap: 2rem;
    }

    .section7-subtitle {
        font-size: 1.6rem;
    }

    .section7-list-item {
        font-size: 1.1rem;
        padding-left: 2.25rem;
    }

    .section7-list-item::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.9rem;
    }

    .section7-message-text {
        font-size: 1.2rem;
    }
}

/* Mobile Styles for Section7 */
@media screen and (max-width: 768px) {
    .section7 {
        padding: 4rem 1.5rem;
    }

    .section7-container {
        padding: 0;
    }

    .section7-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section7-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.75rem;
    }

    .section7-subtitle {
        font-size: 1.4rem;
    }

    .section7-list {
        gap: 1rem;
    }

    .section7-list-item {
        font-size: 1rem;
        padding-left: 2rem;
        line-height: 1.7;
    }

    .section7-list-item::before {
        width: 1.4rem;
        height: 1.4rem;
        font-size: 0.85rem;
    }

    .section7-message {
        margin-top: 1rem;
        padding-top: 1.5rem;
    }

    .section7-message-text {
        font-size: 1.1rem;
    }
}

/* Small Mobile Styles for Section7 */
@media screen and (max-width: 480px) {
    .section7 {
        padding: 3rem 1rem;
    }

    .section7-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section7-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .section7-subtitle {
        font-size: 1.2rem;
    }

    .section7-list {
        gap: 0.875rem;
    }

    .section7-list-item {
        font-size: 0.95rem;
        padding-left: 1.75rem;
        line-height: 1.6;
    }

    .section7-list-item::before {
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.8rem;
    }

    .section7-message {
        margin-top: 0.75rem;
        padding-top: 1.25rem;
    }

    .section7-message-text {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Styles for Section7 */
@media screen and (max-width: 360px) {
    .section7 {
        padding: 2.5rem 0.75rem;
    }

    .section7-title {
        font-size: 1.4rem;
    }

    .section7-content {
        padding: 1.25rem 0.75rem;
    }

    .section7-subtitle {
        font-size: 1.1rem;
    }

    .section7-list-item {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .section7-list-item::before {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.75rem;
    }

    .section7-message-text {
        font-size: 0.95rem;
    }
}

/* Section8 Styles */
.section8 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-image: url('../img/IMG_1308.HEIC');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.section8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.7) 0%, rgba(245, 87, 108, 0.7) 50%, rgba(79, 172, 254, 0.7) 100%);
    z-index: 0;
}

.section8-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section8-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section8-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section8-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section8-intro {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section8-activities {
    margin: 1rem 0;
}

.section8-activities-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section8-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section8-list-item {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    padding-left: 2.5rem;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section8-list-item::before {
    content: '☕';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section8-message {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;
    margin: 1.5rem 0 0 0;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles for Section8 */
@media screen and (max-width: 1024px) {
    .section8 {
        padding: 5rem 2rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section8::before {
        background: linear-gradient(135deg, rgba(240, 147, 251, 0.65) 0%, rgba(245, 87, 108, 0.65) 50%, rgba(79, 172, 254, 0.65) 100%);
    }

    .section8-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section8-content {
        padding: 3rem;
        gap: 1.75rem;
    }

    .section8-subtitle {
        font-size: 1.6rem;
    }

    .section8-intro {
        font-size: 1.2rem;
    }

    .section8-activities-title {
        font-size: 1.1rem;
    }

    .section8-list-item {
        font-size: 1.1rem;
        padding-left: 2.25rem;
    }

    .section8-list-item::before {
        font-size: 1.4rem;
        width: 1.875rem;
    }

    .section8-message {
        font-size: 1.2rem;
    }
}

/* Mobile Styles for Section8 */
@media screen and (max-width: 768px) {
    .section8 {
        padding: 4rem 1.5rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section8::before {
        background: linear-gradient(135deg, rgba(240, 147, 251, 0.6) 0%, rgba(245, 87, 108, 0.6) 50%, rgba(79, 172, 254, 0.6) 100%);
    }

    .section8-container {
        padding: 0;
    }

    .section8-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section8-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.5rem;
    }

    .section8-subtitle {
        font-size: 1.4rem;
    }

    .section8-intro {
        font-size: 1.1rem;
    }

    .section8-activities {
        margin: 0.75rem 0;
    }

    .section8-activities-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .section8-list {
        gap: 0.875rem;
    }

    .section8-list-item {
        font-size: 1rem;
        padding-left: 2rem;
        line-height: 1.7;
    }

    .section8-list-item::before {
        font-size: 1.3rem;
        width: 1.75rem;
    }

    .section8-message {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }
}

/* Small Mobile Styles for Section8 */
@media screen and (max-width: 480px) {
    .section8 {
        padding: 3rem 1rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section8::before {
        background: linear-gradient(135deg, rgba(240, 147, 251, 0.55) 0%, rgba(245, 87, 108, 0.55) 50%, rgba(79, 172, 254, 0.55) 100%);
    }

    .section8-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section8-content {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .section8-subtitle {
        font-size: 1.2rem;
    }

    .section8-intro {
        font-size: 1rem;
    }

    .section8-activities-title {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .section8-list {
        gap: 0.75rem;
    }

    .section8-list-item {
        font-size: 0.95rem;
        padding-left: 1.75rem;
        line-height: 1.6;
    }

    .section8-list-item::before {
        font-size: 1.2rem;
        width: 1.5rem;
    }

    .section8-message {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Extra Small Mobile Styles for Section8 */
@media screen and (max-width: 360px) {
    .section8 {
        padding: 2.5rem 0.75rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section8::before {
        background: linear-gradient(135deg, rgba(240, 147, 251, 0.5) 0%, rgba(245, 87, 108, 0.5) 50%, rgba(79, 172, 254, 0.5) 100%);
    }

    .section8-title {
        font-size: 1.4rem;
    }

    .section8-content {
        padding: 1.25rem 0.75rem;
    }

    .section8-subtitle {
        font-size: 1.1rem;
    }

    .section8-intro {
        font-size: 0.95rem;
    }

    .section8-activities-title {
        font-size: 0.9rem;
    }

    .section8-list-item {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .section8-list-item::before {
        font-size: 1.1rem;
        width: 1.375rem;
    }

    .section8-message {
        font-size: 0.95rem;
    }
}

/* Section10 Styles */
.section10 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section10-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section10-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.section10-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section10-intro-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    background-color: rgba(102, 126, 234, 0.05);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section10-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    margin: 0;
    text-align: left;
    flex: 0 0 40%;
}

.section10-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: left;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section10-youtube {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section10-youtube-embed {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio fallback */
    aspect-ratio: 16 / 9;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

@supports (aspect-ratio: 16 / 9) {
    .section10-youtube-embed {
        padding-bottom: 0;
        height: auto;
    }
}

.section10-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.section10-note {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.section10-intro-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.section10-intro-video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.section10-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.section10-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    box-sizing: border-box;
    white-space: nowrap;
}

.section10-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    background-color: #cc0000;
}

.section10-cta-button:active {
    transform: translateY(-1px);
}

/* Tablet Styles for Section10 */
@media screen and (max-width: 1024px) {
    .section10 {
        padding: 5rem 2rem;
    }

    .section10-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section10-content {
        gap: 2rem;
    }

    .section10-intro-group {
        gap: 2rem;
        padding: 3rem;
    }

    .section10-subtitle {
        font-size: 1.6rem;
    }

    .section10-description {
        font-size: 1.1rem;
    }

    .section10-youtube-embed {
        max-width: 700px;
    }

    .section10-intro-video {
        margin-top: 2.5rem;
    }

    .section10-intro-video-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
}

/* Mobile Styles for Section10 */
@media screen and (max-width: 768px) {
    .section10 {
        padding: 4rem 1.5rem;
    }

    .section10-container {
        padding: 0;
    }

    .section10-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section10-content {
        gap: 1.75rem;
    }

    .section10-intro-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .section10-subtitle {
        font-size: 1.4rem;
        text-align: left;
        flex: none;
    }

    .section10-description {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
        flex: none;
    }

    .section10-youtube-embed {
        max-width: 100%;
        border-radius: 10px;
    }

    .section10-intro-video {
        margin-top: 2rem;
    }

    .section10-intro-video-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .section10-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Small Mobile Styles for Section10 */
@media screen and (max-width: 480px) {
    .section10 {
        padding: 3rem 1rem;
    }

    .section10-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section10-content {
        gap: 1.5rem;
    }

    .section10-intro-group {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .section10-subtitle {
        font-size: 1.2rem;
        text-align: left;
        flex: none;
    }

    .section10-description {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
        flex: none;
    }

    .section10-intro-video {
        margin-top: 1.75rem;
    }

    .section10-intro-video-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .section10-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile Styles for Section10 */
@media screen and (max-width: 360px) {
    .section10 {
        padding: 2.5rem 0.75rem;
    }

    .section10-title {
        font-size: 1.4rem;
    }

    .section10-intro-group {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 0.75rem;
        border-radius: 10px;
    }

    .section10-subtitle {
        font-size: 1.1rem;
        text-align: left;
        flex: none;
    }

    .section10-description {
        font-size: 0.9rem;
        text-align: left;
        flex: none;
    }

    .section10-intro-video {
        margin-top: 1.5rem;
    }

    .section10-intro-video-title {
        font-size: 1.1rem;
        margin-bottom: 0.875rem;
    }

    .section10-cta-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Section9 Styles */
.section9 {
    width: 100%;
    max-width: 100vw;
    padding: 6rem 2rem;
    background-image: url('../img/IMG_1304-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: rgba(102, 126, 234, 0.3);
    color: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.section9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    z-index: 0;
}

.section9-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.section9-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section9-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section9-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section9-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.section9-time,
.section9-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section9-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section9-info-text {
    font-weight: 600;
}

.section9-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section9-cta {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.section9-cta-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles for Section9 */
@media screen and (max-width: 1024px) {
    .section9 {
        padding: 5rem 2rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section9::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.25) 100%);
    }

    .section9-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section9-content {
        padding: 3rem;
        gap: 1.75rem;
    }

    .section9-subtitle {
        font-size: 1.6rem;
    }

    .section9-time,
    .section9-location {
        font-size: 1.2rem;
        padding: 0.875rem 1.25rem;
    }

    .section9-icon {
        font-size: 1.4rem;
    }

    .section9-description {
        font-size: 1.1rem;
    }

    .section9-cta-text {
        font-size: 1.3rem;
    }
}

/* Mobile Styles for Section9 */
@media screen and (max-width: 768px) {
    .section9 {
        padding: 4rem 1.5rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section9::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    }

    .section9-container {
        padding: 0;
    }

    .section9-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section9-content {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        gap: 1.5rem;
    }

    .section9-subtitle {
        font-size: 1.4rem;
    }

    .section9-info {
        gap: 1rem;
        margin: 1.25rem 0;
    }

    .section9-time,
    .section9-location {
        font-size: 1.1rem;
        padding: 0.875rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .section9-icon {
        font-size: 1.3rem;
    }

    .section9-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section9-cta {
        margin-top: 1.25rem;
        padding-top: 1.5rem;
    }

    .section9-cta-text {
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles for Section9 */
@media screen and (max-width: 480px) {
    .section9 {
        padding: 3rem 1rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section9::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    }

    .section9-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section9-content {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .section9-subtitle {
        font-size: 1.2rem;
    }

    .section9-info {
        gap: 0.875rem;
        margin: 1rem 0;
    }

    .section9-time,
    .section9-location {
        font-size: 1rem;
        padding: 0.75rem 0.875rem;
    }

    .section9-icon {
        font-size: 1.2rem;
    }

    .section9-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section9-cta {
        margin-top: 1rem;
        padding-top: 1.25rem;
    }

    .section9-cta-text {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile Styles for Section9 */
@media screen and (max-width: 360px) {
    .section9 {
        padding: 2.5rem 0.75rem;
        background-image: url('../img/IMG_1304-1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }
    
    .section9::before {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    }

    .section9-title {
        font-size: 1.4rem;
    }

    .section9-content {
        padding: 1.25rem 0.75rem;
    }

    .section9-subtitle {
        font-size: 1.1rem;
    }

    .section9-time,
    .section9-location {
        font-size: 0.95rem;
        padding: 0.7rem 0.75rem;
    }

    .section9-icon {
        font-size: 1.1rem;
    }

    .section9-description {
        font-size: 0.9rem;
    }

    .section9-cta-text {
        font-size: 1rem;
    }
}

/* Section 11 - Gallery */
.section11 {
    width: 100%;
    padding: 6rem 2rem;
    background-color: #ffffff;
    box-sizing: border-box;
}

.section11-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section11-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.section11-content {
    width: 100%;
}

.section11-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.section11-gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section11-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section11-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.section11-gallery-item:hover .section11-gallery-image {
    transform: scale(1.05);
}

.section11-cta {
    text-align: center;
    margin-top: 2rem;
}

.section11-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section11-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Tablet Styles for Section11 */
@media screen and (max-width: 1024px) {
    .section11 {
        padding: 5rem 2rem;
    }

    .section11-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .section11-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

/* Mobile Styles for Section11 */
@media screen and (max-width: 768px) {
    .section11 {
        padding: 4rem 1.5rem;
    }

    .section11-container {
        padding: 0;
    }

    .section11-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section11-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .section11-gallery-item {
        aspect-ratio: 16 / 9;
    }

    .section11-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Small Mobile Styles for Section11 */
@media screen and (max-width: 480px) {
    .section11 {
        padding: 3rem 1rem;
    }

    .section11-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .section11-gallery-grid {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .section11-cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* Extra Small Mobile Styles for Section11 */
@media screen and (max-width: 360px) {
    .section11 {
        padding: 2.5rem 0.75rem;
    }

    .section11-title {
        font-size: 1.4rem;
    }

    .section11-cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* YouTube Popup Modal Styles */
.youtube-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.youtube-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.youtube-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.youtube-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.youtube-popup-close:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

.youtube-popup-close:active {
    transform: scale(0.95);
}

.youtube-popup-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    color: #ffffff;
}

.youtube-popup-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.youtube-popup-welcome {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.youtube-popup-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Styles for YouTube Popup */
@media (max-width: 768px) {
    .youtube-popup-content {
        width: 95%;
        max-height: 85vh;
    }

    .youtube-popup-close {
        top: 8px;
        right: 8px;
        font-size: 24px;
        width: 40px;
        height: 40px;
        border-width: 1.5px;
    }

    .youtube-popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .youtube-popup-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .youtube-popup-welcome {
        font-size: 1rem;
    }
}

/* Small Mobile Styles for YouTube Popup */
@media (max-width: 480px) {
    .youtube-popup-close {
        top: 5px;
        right: 5px;
        font-size: 20px;
        width: 35px;
        height: 35px;
        border-width: 1px;
    }

    .youtube-popup-header {
        padding: 1.25rem 1rem 0.875rem;
    }

    .youtube-popup-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .youtube-popup-welcome {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

