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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2563EB;
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
    padding: 60px 0;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.2));
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.page-title {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
    border-radius: 2px;
}

.page-title h1 {
    color: #1E3A8A;
    margin-bottom: 16px;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 0;
    font-weight: 500;
}

/* Content Sections */
.content-section {
    margin-bottom: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #F1F5F9;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

.content-section:nth-child(even)::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.content-section h2 {
    color: #1E3A8A;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E2E8F0;
    font-size: 2.25rem;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

.content-section h3 {
    color: #374151;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
    border-radius: 2px;
}

.content-section p {
    color: #4B5563;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-section strong {
    color: #1E3A8A;
    font-weight: 600;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    display: grid;
    gap: 16px;
}

.feature-list li {
    padding: 16px 20px;
    color: #4B5563;
    position: relative;
    padding-left: 48px;
    background: #F8FAFC;
    border-radius: 12px;
    border-left: 4px solid #3B82F6;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-list li:hover {
    background: #EBF4FF;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #10B981;
    font-weight: bold;
    font-size: 1.2em;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

/* Content Images */
.content-image-section {
    margin: 48px 0;
    text-align: center;
}

.content-image-container {
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 100%;
}

.content-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content-image-container:hover img {
    transform: scale(1.05);
}

.content-image-caption {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #6B7280;
    font-style: italic;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, #F8FAFC 0%, #EBF4FF 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E3A8A 100%);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: #1E3A8A;
    font-weight: 600;
}

.contact-info a {
    color: #3B82F6;
    font-weight: 500;
}

.contact-info a:hover {
    color: #2563EB;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    color: white;
    padding: 80px 0 40px;
    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/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1920&h=600&fit=crop') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo-container {
    justify-content: flex-start;
}

.footer-brand .logo-container.small {
    gap: 12px;
}

.footer-brand .logo-container.small .logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.1));
}

.footer-brand .logo-container.small .brand-name {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-description {
    color: #CBD5E1;
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-section h4 {
    color: #E2E8F0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    color: #CBD5E1;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-section a {
    color: #60A5FA;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #93C5FD;
    text-decoration: underline;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9CA3AF;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: #60A5FA;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #93C5FD;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 32px;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 64px 0;
    }
    
    .page-title {
        margin-bottom: 48px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .content-section {
        margin-bottom: 48px;
        padding: 24px;
        border-radius: 16px;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
        margin-top: 32px;
    }
    
    .feature-list li {
        padding: 12px 16px;
        padding-left: 40px;
        font-size: 1rem;
    }
    
    .feature-list li:before {
        left: 12px;
        width: 16px;
        height: 16px;
        font-size: 1em;
    }
    
    .contact-info {
        padding: 24px;
        border-radius: 12px;
    }
    
    .page-header {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.75rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .content-section {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.125rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .feature-list li {
        padding: 10px 12px;
        padding-left: 36px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-section h4 {
        font-size: 1.125rem;
    }
    
    .footer-section p {
        font-size: 1rem;
    }
}

/* Animation Enhancements */
@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;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .content-section {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }
    
    .content-section.animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .page-header,
    .footer {
        background: none !important;
        color: black !important;
    }
    
    .content-section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }
    
    .feature-list li {
        background: none !important;
        border: none !important;
        padding-left: 20px !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}