/* Website 203 - Custom Layout */
:root {
    --primary-color: #DC2626;
    --secondary-color: #10B981;
    --accent-color: #34D399;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --bg-light: #F0FDF4;
    --bg-white: #FFFFFF;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #DC2626, #047857);
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #DC2626;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #DC2626, #047857);
    padding: 80px 40px;
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-light);
    color: #DC2626;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 100px 40px;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: #DC2626;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: #6B7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #DC2626;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 55px;
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    color: #DC2626;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: #DC2626;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 17px;
    color: #4B5563;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #DC2626;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    padding: 60px 40px 30px;
    color: var(--text-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Page Hero */
.page-hero {
    padding: 150px 40px 80px;
    background: linear-gradient(135deg, #DC2626, #047857);
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Subpage Content */
.subpage-content {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 30px;
    color: #DC2626;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, var(--accent-color));
    border-radius: 2px;
}

.content-block p {
    font-size: 17px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.content-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 16px;
    border-left: 4px solid #DC2626;
}

.content-card h3 {
    font-size: 18px;
    color: #DC2626;
    margin-bottom: 10px;
}

.content-card p {
    font-size: 14px;
    color: #6B7280;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 28px;
    background: var(--bg-light);
    border-radius: 16px;
    min-width: 200px;
}

.contact-item .icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
}

.contact-item h4 {
    font-size: 17px;
    color: #DC2626;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: #4B5563;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
