/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #111827;
}

h2 {
    font-size: 2rem;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #111827;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 6rem 0;
}

a {
    text-decoration: none;
    color: #6D28D9;
    transition: color 0.3s;
}

a:hover {
    color: #4C1D95;
}

/* Button styles */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 32px;
}

.btn-primary {
    background-color: #6D28D9;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #5B21B6;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #6D28D9;
    border: none;
}

.btn-secondary:hover {
    background-color: #3730A3;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #6D28D9;
    border: 2px solid #6D28D9;
}

.btn-outline:hover {
    background-color: #6D28D9;
    color: white;
}

/* Header styles */
header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
width: 174px;    	
height: 48px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

nav a {
    font-weight: 500;
    color: #4B5563;
}

nav a:hover {
    color: #6D28D9;
}

/* Hero section */
.hero {
    background-image: url('hero-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Stats section */
.stats {
    background-color: #F9FAFB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #6D28D9;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1rem;
    color: #4B5563;
}

/* Services section */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Why Choose Us section */
.why-us {
    background-color: #EDE9FE;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    background-color: #6D28D9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* About section */
.about {
    background-color: #F9FAFB;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* CTA section */
.cta {
    background-color: #6D28D9;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #F9FAFB;
    color: #1F2937;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .stats-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .btn-outline {
        padding: 8px 16px;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
    }
} 