/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

header .logo img {
    width: 150px; /* Adjust according to your logo size */
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

header p {
    font-size: 1.25rem;
    color: #3498db;
}

/* Hero Image */
.hero-image {
    text-align: center;
    margin-bottom: 40px;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Section styles */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}


/* Why Choose Us */
.why-choose-us ul {
    list-style-type: none;
    padding-left: 20px;
}

.why-choose-us li {
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.why-choose-us li strong {
    color: #3498db;
}

/* Services */
.marks ul {
    list-style-type: none;
    padding-left: 20px;
}

.marks li {
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.marks li strong {
    color: #3498db;
}

/* What to Expect */
.copyrights ul {
    list-style-type: none;
    padding-left: 20px;
}

.copyrights li {
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.copyrights li strong {
    color: #3498db;
}


/* Footer */
footer {
    text-align: center;
    font-size: 0.875rem;
    color: #555;
    margin-top: 40px;
}

footer p {
    color: #2c3e50;
}
