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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header Styling */
header {
    background-image: url('https://images.unsplash.com/photo-1517430816045-df4b7de2d37b?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=2000');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

header .header-content {
    position: relative;
    z-index: 1;
}

/* Section Styling */
section {
    padding: 40px 0;
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Blockquote Styling */
blockquote.blockquote {
    margin: 20px auto;
    max-width: 600px;
    font-style: italic;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

blockquote.blockquote footer {
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
}

/* Form Styling */
form .form-group label {
    font-weight: 500;
}

form .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    margin-top: 5px;
    padding: 10px;
}

form .btn-primary {
    background-color: #007BFF;
    border-color: #007BFF;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: 300px;
    }

    .service {
        margin-top: 20px;
    }
}