/* 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: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero .btn-primary {
    background-color: white;
    color: #1e3a8a;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hero .btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about .container {
    max-width: 800px;
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.about p {
    font-size: 1.2rem;
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4b5563;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1e3a8a;
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.6;
}

.testimonial-card cite {
    font-weight: 600;
    color: #1e3a8a;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    color: white !important;
    margin-bottom: 1rem;
}

.contact > .container > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.contact-info {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4rem !important;
    margin: 3rem 0 !important;
    flex-wrap: wrap !important;
}

.contact-method {
    text-align: center !important;
    min-width: 200px !important;
}

.contact-method h3 {
    color: white !important;
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
}

.contact-link {
    color: white !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.contact-link:hover {
    border-bottom-color: white !important;
    color: #f1f5f9 !important;
}

.contact-link:visited {
    color: white !important;
}

.contact .btn-primary {
    background-color: white;
    color: #1e3a8a;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact .btn-primary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about, .services, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column !important;
        gap: 2rem !important;
        margin: 2rem 0 !important;
    }
    
    .contact-method {
        min-width: auto !important;
        width: 100% !important;
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero .btn-primary, .contact .btn-primary {
        padding: 12px 24px;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
} 