* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

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

.main-header {
    background-color: #007FE0;
    color: white;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
}

.logo-img {
    height: 50px;
    vertical-align: middle;
    margin-right: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-section {
    background: url('../assets/img/hero-bg.jpg') no-repeat center center/cover;
    color: rgb(19, 19, 19);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 100px 20px;
    text-align: center;
    background-color: #ffffcf;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #007FE0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 63px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.gallery-section {
    padding: 50px 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.section-title-g {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007FE0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.scetion-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007FE0;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item img {
    width: 250px;
    height: 350px;
}

.testimonials-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.section-title-c {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007FE0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 2px solid #007FE0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 10px;
    color: #555;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
    padding: 0 10px;
}

.testimonial-card cite {
    display: block;
    font-weight: bold;
    color: #555;
}

.section-contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.form-container {
    max-width: 500px;
    margin: auto;
    background: #0170c5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title-f {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

button {
    background-color: #007FE0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #f8f402;
}

.main-footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}