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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Main Content */
main {
    padding: 40px 20px;
}

section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 10px;
}

section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #555;
}

/* Profile Section */
.profile {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
}

.profile h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile p {
    margin-bottom: 15px;
}

.profile p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-info {
    font-size: 1.1rem;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 6px;
    text-align: center;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section {
        padding: 25px;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
