/* Color Variables */
:root {
    --coral: #FF7F7F;
    --navy: #1A2B4C;
    --mint: #7FDFB0;
    --off-white: #FAFAFA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C7B7F;
    --shadow: rgba(26, 43, 76, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--off-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 20px var(--shadow);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.brand-name a {
    color: var(--navy);
    text-decoration: none;
}

.brand-name a:hover {
    color: var(--coral);
}

.brand-name a {
    color: var(--navy);
    text-decoration: none;
}

.brand-name a:hover {
    color: var(--coral);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 80px 0;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.content-block {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px var(--shadow);
}

.content-block h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.empty-content {
    background: var(--white);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
}

.empty-content p {
    color: var(--text-light);
    font-size: 18px;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-weight: 600;
    font-size: 18px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .content-block h3 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .svg-illustration {
        order: -1;
    }
    
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .svg-illustration {
        order: -1;
    }
}