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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

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

/* Color Variables */
:root {
    --primary-color: #2D5A3D;
    --secondary-color: #CC8B3C;
    --accent-color: #8B4513;
    --text-dark: #333;
    --text-light: #666;
    --background-light: #FAFAFA;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}

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

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

.logo-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
    line-height: 1;
}

.back-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 80px 0;
}

.main-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.content-block {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

/* Content Layout Styles */
.content-with-image, .content-with-svg {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.text-content {
    /* Text content styling handled by existing .content-block p styles */
}

.content-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.svg-illustration svg {
    width: 100%;
    max-width: 200px;
    height: auto;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.brand-name-footer {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-section h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-image, .content-with-svg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-placeholder {
        min-height: 120px;
        padding: 30px 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .main-content h1 {
        font-size: 32px;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content h1 {
        font-size: 28px;
    }
    
    .brand-main {
        font-size: 20px;
    }
    
    .brand-sub {
        font-size: 16px;
    }
    
    .content-block {
        padding: 20px 15px;
    }
}