/* 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;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    min-height: 100vh;
    color: #e2e8f0;
    line-height: 1.6;
}

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

.logo-container {
    background: rgba(30, 41, 59, 0.9);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    object-fit: contain;
    background: #334155;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 1.5rem 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    margin: 4rem 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.service-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* About Section */
.about {
    margin: 4rem 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 3rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.about-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    margin: 4rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-description {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.contact-item h4 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        text-align: center;
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

.footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Legal / Privacy Policy page */
.legal {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.85);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #667eea;
}

.legal h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.policy-meta {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.policy-meta span {
    display: block;
}

.legal h2 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal h3 {
    color: #f1f5f9;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.75rem 0 0.75rem;
}

.legal p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.legal ul {
    margin: 0 0 1rem 1.5rem;
    color: #cbd5e1;
}

.legal li {
    margin-bottom: 0.5rem;
}

.legal strong {
    color: #e2e8f0;
}

.legal a {
    color: #667eea;
    text-decoration: none;
    word-break: break-word;
}

.legal a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal {
        padding: 2rem 1.5rem;
    }

    .legal h1 {
        font-size: 1.75rem;
    }
}
