/* Reset basic styles */
body, h1, h2, h3, p, ul, li, figure, figcaption, blockquote, dl, dd, dt {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif; /* Modern, readable font */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light, youthful background */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #fff;
}

.bg-gradient {
    background: linear-gradient(135deg, #007bff, #6610f2); /* Dynamic gradient effect */
    color: #fff;
}

.section__title {
    font-size: 2.8em; /* Large, attention-grabbing title */
    color: #007bff;
    margin-bottom: 40px;
    font-weight: bold;
}

.section__title.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95); /* Light transparent white background */
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 2em;
    font-weight: 700; /* Stronger font weight */
    color: #007bff;
}

.header__nav {
    list-style: none;
    display: flex;
}

.header__nav li {
    margin-left: 30px;
}

.header__nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
    font-weight: 500;
}

.header__nav a:hover {
    color: #007bff;
}

/* Hero Section */
#hero {
    background-color: #f0f8ff; /* Fresh light blue background */
    padding: 150px 0;
    overflow: hidden; /* To handle image effects */
}

.hero__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__content {
    flex: 1;
    padding-right: 50px;
}

.hero__title {
    font-size: 3.5em; /* Large, impactful title */
    color: #333;
    margin-bottom: 25px;
    font-weight: 800; /* Very strong font weight */
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero__image {
    flex: 1;
    max-width: 550px;
}

.hero__image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out; /* Subtle animation on page load */
}

/* About Section */
.about__inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about__image {
    flex: 1;
    max-width: 500px;
}

.about__image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about__content {
    flex: 1;
}

.about__description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.about__features {
    list-style: none;
    margin-bottom: 40px;
}

.about__features li {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.about__features i {
    color: #28a745;
    margin-right: 15px;
}

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service__item {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service__item:hover {
    transform: translateY(-5px);
}

.service__icon {
    font-size: 2.5em;
    color: #ff6b6b; /* Bright color for service icons */
    margin-bottom: 20px;
}

.service__item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.service__item p {
    color: #777;
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contact__info h3 {
    color: #007bff;
    margin-bottom: 20px;
}

.contact__info p {
    color: #555;
    margin-bottom: 15px;
}

.contact__info i {
    color: #007bff;
    margin-right: 10px;
}

.contact__form h3 {
    color: #007bff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.button--primary {
    background-color: #007bff;
    color: #fff;
}

.button--primary:hover {
    background-color: #0056b3;
}

.button--secondary {
    background-color: #28a745;
    color: #fff;
}

.button--secondary:hover {
    background-color: #1e7e34;
}

.button--view {
    background-color: #6c757d;
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9em;
}

.button--view:hover {
    background-color: #545b62;
}

.button--light {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.button--light:hover {
    background-color: #f0f0f0;
}

.button--outline {
    background-color: transparent;
    color: #28a745;
    border: 2px solid #28a745;
}

.button--outline:hover {
    background-color: #28a745;
    color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__nav {
    list-style: none;
    display: flex;
}

.footer__nav li {
    margin-left: 20px;
}

.footer__nav a {
    text-decoration: none;
    color: #ddd;
    transition: color 0