/* The Story of Buddy Homepage Styles - Mobile First Responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
}

p, span, a, li {
    font-family: 'Nunito', sans-serif;
}

/* Base Styles - Mobile First */
body {
    font-family: 'Nunito', sans-serif;
    background: #F0F9FF; /* Light sky blue background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #1e293b;
    position: relative;
    overflow-x: hidden;
}

/* Removed gradient animation */

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) translateX(-5px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(1.1);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(90deg);
    }
    50% {
        transform: translateY(-12px) rotate(180deg);
    }
    75% {
        transform: translateY(-8px) rotate(270deg);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

/* Geometric Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    left: -5%;
    width: 100px;
    height: 100px;
    background: #FFE5B4; /* Peach circle */
    border-radius: 50%;
    animation: float1 20s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    bottom: 15%;
    right: -3%;
    width: 75px;
    height: 75px;
    background: #B8E7D4; /* Mint green triangle */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float2 18s ease-in-out infinite reverse;
    z-index: -1;
    opacity: 0.7;
}

.homepage {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Additional geometric shapes */
.geometric-bg {
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: #FFD700; /* Gold square */
    transform: rotate(45deg);
    border-radius: 12px;
    animation: rotate360 25s linear infinite;
    opacity: 0.5;
}

.geometric-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 15%;
    width: 30px;
    height: 30px;
    background: #FF9F9F; /* Soft coral triangle */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float3 22s ease-in-out infinite;
    opacity: 0.6;
}

/* Mobile-first Container */
.homepage-container {
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid #FFD700;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Mobile-first Company Banner */
.company-banner {
    margin: 0 -15px;
    padding: 15px 15px 20px;
    background: transparent;
    border-bottom: 4px solid #FF6B6B;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    position: relative;
}

/* Fun decorative stars */
.company-banner::before,
.company-banner::after {
    content: '★';
    position: absolute;
    font-size: 24px;
    color: #FFD700;
    animation: twinkle 3s ease-in-out infinite;
}

.company-banner::before {
    top: 10px;
    left: 10px;
}

.company-banner::after {
    top: 10px;
    right: 10px;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.banner-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

/* Mobile: stack sidebar horizontally */
@media (max-width: 767px) {
    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu-item {
        flex: 0 1 auto;
        white-space: nowrap;
        font-size: 12px;
        padding: 8px 12px;
    }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    background: rgba(173, 216, 230, 0.3);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-menu-item {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #2d3748;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    text-align: left;
}

.nav-menu-item:hover {
    background: rgba(173, 216, 230, 0.6);
    color: #1e293b;
    transform: translateX(4px);
}

.banner-middle {
    width: 100%;
    padding: 0 10px;
}

.episode-info {
    text-align: center;
}

.episode-title {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    font-weight: 700;
    color: #FF6B6B; /* Coral color for title */
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.episode-description {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

.banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner-footer {
    text-align: center;
    margin-top: 8px;
}

.olin-media-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0px;
    display: block;
}

.tooth-fairy-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

/* Mobile-first Carousel */
.carousel-container {
    margin: 0 15px 30px 15px;
    width: calc(100% - 30px);
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    border: 3px solid #B8E7D4;
    margin: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 500%; /* 5 slides * 100% */
}

.carousel-slide {
    width: calc(100% / 5); /* Each slide takes 1/5th of track width */
    min-width: calc(100% / 5);
    flex: 0 0 calc(100% / 5);
    position: relative;
}

/* Mobile-first slide content - stacked layout */
.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    padding: 15px;
    gap: 15px;
}

.slide-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slide-text {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.slide-text h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 700;
    color: #FF6B6B;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.slide-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background-color: white;
    color: #2d3748;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #4a5568;
    transform: scale(1.2);
}

/* Mobile-first Navigation - 2x2 grid */
.homepage-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 15px 30px 15px;
    width: calc(100% - 30px);
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    text-decoration: none;
    background: transparent;
    border: 3px solid #FFD700;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: inherit;
    min-height: 180px;
}

.nav-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #FFC107;
    background: rgba(255, 250, 205, 0.3);
}

.nav-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav-text {
    text-align: center;
    flex: 1;
}

.nav-title {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 15px;
    font-weight: 700;
    color: #FF6B6B;
    margin-bottom: 4px;
    line-height: 1.2;
}

.nav-subtitle {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    line-height: 1.3;
}

/* Footer Links - Mobile first */
/* Remove old footer styles as they're now nav icons */

/* Modal Styles - Mobile first */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
}

/* Wider modal for Contact Us */
#contactModal .modal-content {
    max-width: 95%;
    width: 95%;
}

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

.modal-content h2 {
    background: #FFE5E5;
    margin: 0;
    padding: 16px 20px;
    color: #FF6B6B;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    border-bottom: 3px solid #FF6B6B;
}

.modal-body {
    padding: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.modal-body p {
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.dr-olin-image {
    width: 100px;
    height: auto;
    margin: 0 12px 12px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    float: left;
}

.close {
    color: #718096;
    float: right;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    padding: 12px 16px;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #2d3748;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.modal-logo.left {
    margin-right: auto;
    margin-left: 20px;
}

.modal-logo.right {
    margin-left: auto;
    margin-right: 20px;
}

/* Contact Modal Mobile Styles */
.division-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.division-section {
    margin: 15px 0;
    padding: 12px 0;
    position: relative;
}

.division-section:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.division-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}

.division-section h3 {
    color: #FF6B6B;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Baloo 2', cursive;
    margin-bottom: 10px;
    text-align: center;
    clear: both;
}

.division-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.division-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #4a5568;
    font-size: 13px;
}

.division-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
}

.division-conclusion {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #2d3748;
    line-height: 1.5;
    font-size: 13px;
    clear: both;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid #e2e8f0;
    padding: 15px 15px;
    text-align: center;
    margin: 25px 0 0 0;
    background: #f8f9fa;
}

.copyright-bar p {
    margin: 0;
    font-size: 11px;
    color: #6b7280;
    font-weight: 400;
}

/* ===== TABLET BREAKPOINT ===== */
@media (min-width: 768px) {
    body {
        padding: 15px;
    }
    
    body::before {
        width: 150px;
        height: 150px;
    }
    
    body::after {
        width: 125px;
        height: 125px;
    }
    
    .geometric-bg::before {
        width: 60px;
        height: 60px;
    }
    
    .geometric-bg::after {
        width: 45px;
        height: 45px;
    }
    
    .homepage-container {
        padding: 0;
        border-radius: 20px;
    }
    
    .company-banner {
        margin: 0 -25px;
        padding: 20px 25px 25px;
        gap: 20px;
        border-bottom: 5px solid #FF6B6B;
        display: grid;
        grid-template-columns: 200px 1fr auto;
        align-items: flex-start;
    }
    
    .sidebar-nav {
        padding: 10px;
    }
    
    .nav-menu-item {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .tooth-fairy-logo {
        height: 110px;
    }
    
    .episode-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .episode-description {
        font-size: 16px;
    }
    
    .olin-media-logo {
        height: 200px;
    }
    
    .tooth-fairy-logo {
        height: 160px;
    }
    
    .carousel-container {
        margin: 0 25px 40px 25px;
        width: calc(100% - 50px);
    }
    
    .carousel {
        border-radius: 14px;
    }
    
    .slide-content {
        min-height: 350px;
        padding: 20px;
        gap: 20px;
    }
    
    .slide-image {
        height: 200px;
    }
    
    .slide-text h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .slide-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 12px;
    }
    
    .next-btn {
        right: 12px;
    }
    
    .carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .homepage-nav {
        gap: 16px;
        margin: 0 25px 40px 25px;
        width: calc(100% - 50px);
    }
    
    .nav-link {
        padding: 18px 15px;
        border-radius: 14px;
        min-height: 200px;
    }
    
    .nav-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }
    
    .nav-icon img {
        width: 90px;
        height: 90px;
    }
    
    .nav-title {
        font-size: 16px;
    }
    
    .nav-subtitle {
        font-size: 12px;
    }
    
    /* Removed old footer styles */
    
    .modal-content {
        width: 90%;
        max-width: 600px;
        border-radius: 14px;
    }
    
    #contactModal .modal-content {
        max-width: 90%;
    }
    
    .modal-content h2 {
        padding: 20px 24px;
        font-size: 20px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-body p {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .close {
        font-size: 28px;
        padding: 14px 18px;
    }
    
    .dr-olin-image {
        width: 140px;
        margin: 0 16px 16px 0;
    }
    
    .modal-logo {
        height: 55px;
    }
    
    .modal-logo.left {
        margin-left: 35px;
    }
    
    .modal-logo.right {
        margin-right: 35px;
    }
    
    .division-image {
        width: 140px;
        margin-bottom: 14px;
    }
    
    .division-section h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .division-section ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .division-conclusion {
        font-size: 14px;
        margin-top: 18px;
        padding-top: 14px;
    }
    
    .copyright-bar {
        padding: 18px 25px;
        margin: 35px 0 0 0;
    }
    
    .copyright-bar p {
        font-size: 12px;
    }
}

/* ===== DESKTOP BREAKPOINT - PRESERVE PC EXPERIENCE ===== */
@media (min-width: 1024px) {
    body {
        padding: 20px;
    }
    
    body::before {
        width: 200px;
        height: 200px;
    }
    
    body::after {
        width: 150px;
        height: 150px;
    }
    
    .geometric-bg::before {
        width: 80px;
        height: 80px;
    }
    
    .geometric-bg::after {
        width: 60px;
        height: 60px;
    }
    
    .homepage-container {
        padding: 0;
        border-radius: 24px;
    }
    
    /* DESKTOP Company Banner - Grid Layout */
    .company-banner {
        margin: 0;
        padding: 20px 40px;
        border-bottom: 6px solid #FF6B6B;
        display: grid;
        grid-template-columns: 220px 1fr 200px;
        gap: 20px;
        align-items: flex-start;
        max-width: 100%;
    }
    
    .banner-left {
        justify-content: flex-start;
        width: auto;
        align-items: flex-start;
    }
    
    .banner-right {
        justify-content: flex-end;
    }
    
    .banner-right img {
        max-height: 120px;
        width: auto;
    }
    
    .sidebar-nav {
        padding: 12px;
        gap: 4px;
    }
    
    .nav-menu-item {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .tooth-fairy-logo {
        height: 120px;
    }
    
    .banner-left {
        justify-content: flex-start;
    }
    
    .banner-middle {
        padding: 0 20px;
    }
    
    .episode-info {
        text-align: left;
    }
    
    .episode-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .episode-description {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .banner-right {
        align-items: flex-end;
        text-align: right;
    }
    
    .banner-footer {
        text-align: right;
        margin-top: 5px;
    }
    
    .olin-media-logo {
        height: 300px;
    }
    
    .tooth-fairy-logo {
        height: 200px;
    }
    
    /* DESKTOP Carousel - Side by side layout */
    .carousel-container {
        margin: 0 40px 50px 40px;
        max-width: calc(100% - 80px);
        width: auto;
    }
    
    .carousel {
        border-radius: 16px;
    }
    
    .slide-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 400px;
        padding: 20px;
        gap: 30px;
    }
    
    .slide-image {
        flex: 0 0 60%;
        height: 100%;
    }
    
    .slide-text {
        flex: 1;
        padding: 20px 80px 20px 20px;
        text-align: left;
    }
    
    .slide-text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .slide-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .prev-btn {
        left: 20px;
    }
    
    .next-btn {
        right: 20px;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* DESKTOP Navigation - 2x2 Grid with proper sizing */
    .homepage-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 0 40px 60px 40px;
        max-width: calc(100% - 80px);
        width: auto;
    }
    
    .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 24px 28px;
        border-radius: 16px;
        min-height: auto;
    }
    
    .nav-icon {
        width: 186px;
        height: 186px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .nav-icon img {
        width: 190px;
        height: 190px;
    }
    
    .nav-text {
        text-align: left;
        flex: 1;
    }
    
    .nav-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .nav-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Removed old footer styles */
    
    /* DESKTOP Modal */
    .modal-content {
        margin: 5% auto;
        width: 90%;
        max-width: 600px;
        border-radius: 16px;
    }
    
    #contactModal .modal-content {
        max-width: 1200px;
        width: 95%;
    }
    
    .modal-content h2 {
        padding: 24px 32px;
        font-size: 24px;
    }
    
    .modal-body {
        padding: 32px;
        line-height: 1.7;
    }
    
    .modal-body p {
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .close {
        font-size: 32px;
        padding: 16px 20px;
    }
    
    .dr-olin-image {
        width: 180px;
        margin: 0 20px 20px 0;
        border-radius: 12px;
    }
    
    .modal-logo {
        height: 70px;
    }
    
    .modal-logo.left {
        margin-left: 48px;
    }
    
    .modal-logo.right {
        margin-right: 48px;
    }
    
    /* DESKTOP Contact Modal */
    .division-image {
        width: 200px;
        margin-bottom: 12px;
    }
    
    .division-image.left-image {
        float: left;
        margin-right: 24px;
        margin-bottom: 16px;
    }
    
    .division-image.right-image {
        float: right;
        margin-left: 24px;
        margin-bottom: 16px;
    }
    
    .division-section {
        margin: 20px 0;
        padding: 16px 0;
    }
    
    .division-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: left;
        clear: none;
    }
    
    .division-section ul li {
        padding-left: 24px;
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .division-section ul li:before {
        font-size: 18px;
    }
    
    .division-conclusion {
        margin-top: 20px;
        padding-top: 16px;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .copyright-bar {
        padding: 20px 40px;
        margin: 40px 0 0 0;
    }
    
    .copyright-bar p {
        font-size: 12px;
    }
}