/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    text-align: center;
    padding: 40px 0;
    background-color: #1a365d;
    color: #fff;
    border-radius: 8px 8px 0 0;
    margin-bottom: 30px;
}

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

header h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

header h3 {
    font-size: 1.2rem;
    font-weight: normal;
}

/* Main Content Styles */
.main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.profile {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.profile-image {
    flex: 1;
    min-width: 200px;
}

.image-placeholder {
    background-color: #ddd;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
}

.profile-details {
    flex: 2;
    min-width: 300px;
}

.profile-details h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.profile-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Services Styles */
.services {
    margin-top: 30px;
    margin-bottom: 30px;
}

.services h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 10px;
}

.service-item {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a365d;
    border-radius: 0 8px 8px 0;
}

.service-item h4 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
}

/* Location Section */
.location {
    margin-top: 30px;
}

.location h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 10px;
}

.location p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 10px;
}

.contact p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact a {
    color: #1a365d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #2c5282;
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1a365d;
    color: #fff;
    border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
    }
    
    .image-placeholder {
        margin-bottom: 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h2 {
        font-size: 1.2rem;
    }
    
    header h3 {
        font-size: 1rem;
    }
}

/* SEO Optimization - Highlight Keywords */
.highlight {
    font-weight: bold;
    color: #1a365d;
}

/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid #1a365d;
    outline-offset: 2px;
}

/* Page Speed Optimization */
img {
    max-width: 100%;
    height: auto;
}
