/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    display: inline-block;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 200px;
    height: auto;
    margin-bottom: 0;
}

.logo-icon {
    font-size: 36px;
    color: #8b3a9e;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.logo h1 {
    color: #333;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    margin: 10px 0;
}

.logo .tagline {
    color: #666;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Navigation Menu */
.main-menu {
    background: linear-gradient(to bottom, #8b3a9e 0%, #6b2a7e 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-menu li {
    flex: 0 1 auto;
}

.main-menu a {
    display: block;
    padding: 18px 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu li:last-child a {
    border-right: none;
}

.main-menu a:hover,
.main-menu a.active {
    background: rgba(255, 255, 255, 0.15);
}

/* Content Wrapper */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 30px;
    min-height: 600px;
}

/* Main Content */
.main-content {
    background: white;
}

/* Slider */
.slider {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 30px;
    max-width: 400px;
    border-radius: 5px;
}

.slide-caption h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.slide-caption p {
    font-size: 15px;
    line-height: 1.6;
}

/* Article */
article {
    background: white;
}

article h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #8b3a9e;
    font-weight: 300;
}

article h3 {
    color: #8b3a9e;
    font-size: 22px;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

article p {
    margin-bottom: 18px;
    text-align: justify;
}

article ul {
    margin: 15px 0 20px 30px;
    list-style: disc;
}

article ul li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.article-content {
    font-size: 15px;
}

.article-image {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 250px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Partner Quote */
.partner-quote {
    background: #f9f4fb;
    border-left: 4px solid #8b3a9e;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(139, 58, 158, 0.1);
}

.partner-quote-logo {
    flex-shrink: 0;
}

.partner-quote-logo img {
    width: 80px;
    height: auto;
    border-radius: 5px;
}

.partner-quote-text {
    flex: 1;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.partner-quote-text a {
    color: #8b3a9e;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dotted #8b3a9e;
}

.partner-quote-text a:hover {
    color: #6b2a7e;
    border-bottom: 1px solid #6b2a7e;
}

@media (max-width: 768px) {
    .partner-quote {
        flex-direction: column;
        text-align: center;
    }

    .partner-quote-logo img {
        width: 60px;
    }
}

/* Sidebar */
.sidebar {
    background: #f9f9f9;
    padding: 0;
}

.widget {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.widget h3 {
    background: linear-gradient(to bottom, #8b3a9e 0%, #6b2a7e 100%);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.widget ul li a:hover {
    background: #f5f5f5;
    color: #8b3a9e;
    padding-left: 25px;
}

.widget.info-box {
    background: #f9f4fb;
    border: 2px solid #8b3a9e;
}

.widget.info-box p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    border-top: 4px solid #8b3a9e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 240px;
        gap: 20px;
        padding: 20px;
    }

    .logo h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .main-menu ul {
        flex-direction: column;
    }

    .main-menu a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    .logo h1 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .logo .tagline {
        font-size: 14px;
    }

    .slide-caption {
        position: static;
        transform: none;
        max-width: 100%;
        border-radius: 0;
    }

    .article-image {
        float: none;
        margin: 0 auto 20px auto;
        max-width: 100%;
        display: block;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header {
        padding: 20px 10px;
    }

    .logo h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .logo-icon {
        font-size: 24px;
        letter-spacing: 5px;
    }

    .main-menu a {
        padding: 12px 15px;
        font-size: 13px;
    }

    .content-wrapper {
        padding: 15px;
    }

    article h2 {
        font-size: 24px;
    }

    article h3 {
        font-size: 18px;
    }

    .slide-caption h2 {
        font-size: 20px;
    }
}