body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #a2cffe, #c4e0e5);
    text-align: center;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 20px;
}

.subpage-header {
    background: linear-gradient(135deg, #a2cffe, #c4e0e5);
    padding: 20px;
    text-align: center;
}

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

nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #27ae60;
}

footer nav ul li a {
    color: #f5f7fa;
}

footer nav ul li a:hover {
    color: #c4e0e5;
}

.cta-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.service-details {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f7fa;
}

.service-details h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.service-detail {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-detail img {
    max-width: 300px;
    border-radius: 8px;
    margin-right: 20px;
}

.service-text {
    text-align: left;
}

.service-text h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-text p {
    color: #34495e;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    max-width: 100%;
    border-radius: 8px;
}

.reviews {
    padding: 40px 20px;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.request-form {
    padding: 40px 20px;
    text-align: center;
}

.request-form form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.request-form label {
    text-align: left;
    color: #2c3e50;
    font-weight: bold;
}

.request-form input,
.request-form select,
.request-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.request-form button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.request-form button:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.contacts {
    padding: 40px 20px;
    text-align: center;
}

.contacts img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.cta-section {
    background: linear-gradient(135deg, #a2cffe, #c4e0e5);
    text-align: center;
    padding: 40px 20px;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}

footer nav {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-logo {
        max-width: 200px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .service-detail {
        flex-direction: column;
        text-align: center;
    }
    .service-detail img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .service-text {
        text-align: center;
    }
}