/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a365d;
}

/* Enhanced H1 styling */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Header-specific H1 styling */
header h1 {
    margin-top: 5rem;
    width: 100%;
    text-align: left;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2c5282;
}

section {
    padding: 4rem 0;
}

/* List Styling */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 15px; /* Aligns with container padding */
}

ul li, ol li {
    margin-bottom: 0.5rem;
}

ul li strong, ol li strong {
    font-weight: 700;
}

/* Styling for the specific list items with name-dash format */
.services li {
    list-style-position: outside;
}

.services li strong {
    font-weight: 800;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    background-image: url('../assets/images/section-bg1.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    margin-bottom: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Services Section */
.services {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
}