/* Modern Color Scheme */
:root {
    --primary: #2A5CAA; /* Deep blue */
    --secondary: #FF7D33; /* Vibrant orange */
    --accent: #4CAF50; /* Fresh green */
    --light: #F5F7FA;
    --dark: #2C3E50;
    --text: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 25px 0 15px;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Header */
header {
    background-color: var(--primary);
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1, header .subtitle {
    color: white;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 10px 0;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #E66B27;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-button.secondary {
    background-color: var(--accent);
}

.cta-button.secondary:hover {
    background-color: #3D8B40;
}

/* Image Styles */
.image-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Sections */
.intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.services-section {
    padding: 40px 0;
    background-color: white;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.benefits-section {
    padding: 40px 0;
}

.benefits-section ul {
    list-style-position: inside;
    margin: 20px 0;
}

.benefits-section li {
    margin-bottom: 10px;
}

.faq-section {
    padding: 40px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer h3 {
    color: white;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .intro-section {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Focus Styles */
a:focus, button:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}