/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navbar Customizations */
.navbar {
    margin-bottom: 50px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.nav-link {
    font-size: 18px;
    margin-right: 10px;
}

.nav-link:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: #007BFF;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

/* Services Section */
.container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    text-decoration: underline;
}

.col-md-4 {
    margin-bottom: 30px;
}

.col-md-4 h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.col-md-4 p {
    font-size: 18px;
}

/* Contact Section */
.form-group label {
    font-size: 18px;
    margin-bottom: 10px;
}

.form-control {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
}

/* Footer */
footer {
    padding: 20px 0;
}

/* Responsive Design */

@media only screen and (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }
}
