/* Reset & base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1c185a;
    background-color: #f9f9f9;
}

/* Container for page width */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
     width: 100%;
    background-color: #ffffff;
    padding: 2rem 0;
}

/* Header adjustments for logo */
header .header-container {
    max-width: 1100px;      
    margin: 0 auto;          
    display: flex;
    justify-content: center;
    align-items: center; 
}

header .logo {
    height: auto;            
    width: auto;            
    max-width: 100%; 
    max-height: 200px; 
}


/* Hero Section */
.hero {
    color: black(0, 0, 0);
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background-color: #f5a427;
    color: #1c185a;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #f79c14;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
    align-items: stretch;
}

.service-box {
    background-color: white;
    padding: 1.5rem;
    flex: 1 1 250px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;        
    flex-direction: column;
}

.service-box h3 {
    margin-bottom: 1rem;
}

.service-details {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.service-box ul {
    text-align: left;
}

#services ul {
    list-style: none; 
    padding-left: 0;
}

#services ul li {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 0.7rem;
}

#services ul li::before {
    content: "✔";        
    position: absolute;
    left: 0;
    color: #f5a427;     
    font-weight: bold;
}



/* Why Choose Us */
#about ul {
    margin-top: 1rem;
    list-style-position: inside;
    padding-left: 1rem;
}

#about li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 2rem 0;
}

/* Footer */
footer {
    background-color: #3282f6;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}



/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    header .header-container {
        flex-direction: column;
        align-items: center;
    }
}
