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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: linear-gradient(-45deg, #FFFFFF, #F7FAFC, #EDF2F7, #F7FAFC);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Subtle background animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Optional: Add subtle floating particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(226, 232, 240, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(237, 242, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 250, 252, 0.2) 0%, transparent 50%);
    animation: floatParticles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.5;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Header Styles */
.header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 40px;
}

.company-name {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.company-tagline {
    font-size: 18px;
    color: #4A5568;
    font-weight: 500;
}

/* Section Styles */
.section {
    margin-bottom: 60px;
}

.description-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.description {
    font-size: 18px;
    color: #2D3748;
    line-height: 1.7;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #2D3748;
}

/* Services Section */
.services-section {
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    list-style: none;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 16px;
    background-color: rgba(247, 250, 252, 0.8);
    border-radius: 8px;
    border-left: 3px solid #2D3748;
    backdrop-filter: blur(5px);
}

.bullet {
    font-size: 24px;
    color: #2D3748;
    margin-right: 16px;
    line-height: 1;
}

.service-text {
    font-size: 16px;
    color: #2D3748;
    flex: 1;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    margin: 40px 0;
}

.contact-info {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 16px;
}

.email-link {
    display: inline-block;
    font-size: 18px;
    color: #3182CE;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid #3182CE;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.email-link:hover {
    background-color: #3182CE;
    color: #FFFFFF;
}

/* Footer Styles */
.footer {
    margin-top: auto;
    padding: 40px 0;
    background-color: rgba(247, 250, 252, 0.8);
    text-align: center;
    backdrop-filter: blur(5px);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    font-size: 14px;
    color: #4A5568;
    margin-bottom: 16px;
}

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

.footer-link {
    font-size: 14px;
    color: #4A5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #3182CE;
}

.separator {
    color: #CBD5E0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 40px 0 30px;
    }
    
    .company-name {
        font-size: 28px;
    }
    
    .company-tagline {
        font-size: 16px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .service-item {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .service-text {
        font-size: 15px;
    }
    
    .email-link {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .footer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 24px;
    }
    
    .header {
        padding: 30px 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    body,
    body::before {
        animation: none;
    }
    
    * {
        transition: none !important;
    }
}