* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c0392b;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    --border-color: #ecf0f1;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --gradient-soft: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header */
.header {
    padding: 80px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1920&h=400&dpr=2') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.header .container {
    position: relative;
    z-index: 1;
}

.logo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.brand-name {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin: 0;
    text-transform: lowercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: calc(100vh - 400px);
    background: var(--gradient-soft);
}

.page-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 60px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    padding: 50px 0;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.content-section:nth-child(even) {
    background: var(--bg-soft);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--primary-color));
}

.content-section:not(:last-child) {
    border-bottom: none;
}

.section-icon {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-icon img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.section-icon:hover img {
    transform: scale(1.1) rotate(5deg);
}

.content-section h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.content-section h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 35px 0 20px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: none;
    text-align: left;
    padding: 0 30px;
}

.content-section ul {
    margin: 25px 0;
    padding-left: 60px;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
}

.content-section li::before {
    content: '▸';
    position: absolute;
    left: -25px;
    color: var(--secondary-color);
    font-weight: bold;
}

.content-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.content-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.content-section a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.content-section a:hover::after {
    width: 100%;
}

/* Enhanced Section Images */
.section-hero-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: relative;
    background: var(--bg-soft);
}

.section-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-hero-image:hover img {
    transform: scale(1.05);
}

/* Contact Info */
.contact-info {
    background: var(--gradient-soft);
    padding: 35px;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 0;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1920&h=400&dpr=2') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand {
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: lowercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-text p {
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.copyright {
    font-size: 1rem !important;
    color: #95a5a6 !important;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover::before {
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .header {
        padding: 60px 0 50px;
    }
    
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 50px 0 40px;
    }
    
    .logo-brand {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .page-title {
        font-size: 2.4rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.4rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1.05rem;
        padding: 0 20px;
    }
    
    .content-section ul {
        padding-left: 40px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 40px 0;
        margin-bottom: 50px;
        border-radius: 16px;
    }
    
    .section-hero-image {
        height: 250px;
        margin: 30px auto;
    }
    
    .contact-info {
        padding: 25px;
        border-radius: 12px;
    }
    
    .footer {
        padding: 50px 0;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 40px 0 35px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 30px 0;
        margin-bottom: 40px;
        border-radius: 12px;
    }
    
    .content-section h2 {
        font-size: 1.7rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .content-section ul {
        padding-left: 35px;
    }
    
    .section-hero-image {
        height: 200px;
        margin: 25px auto;
        border-radius: 12px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-brand {
        font-size: 1.6rem;
    }
    
    .last-updated {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p,
    .content-section li {
        padding: 0 10px;
    }
}

/* Enhanced Visual Elements */
.content-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.section-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

.content-section:nth-child(even) {
    animation-delay: 0.1s;
}

.content-section:nth-child(odd) {
    animation-delay: 0.2s;
}