body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

header,
section,
footer {
    padding: 60px 20px;
    text-align: center;
}

header {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    color: white;
}

header h1 {
    font-size: 2.5rem;
    margin: 0 0 20px;
}

header img {
    margin: 0 0 20px;
}

header p {
    font-size: 1.1rem;
    margin: 0 0 30px;
}

header a {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

header a:hover {
    background: #f0f0f0;
}

section:nth-child(even) {
    background: #f9fafb;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

section p {
    max-width: 700px;
    margin: 0 auto;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    box-sizing: border-box;
}

.carousel {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

blockquote {
    font-style: italic;
    margin: 0 auto 10px;
}

.carousel-buttons {
    margin-top: 20px;
}

.carousel-buttons button {
    background: #2563eb;
    border: none;
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background: #111827;
    color: #9ca3af;
    font-size: 0.9rem;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 20px auto;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.footer-item span {
    margin-right: 10px;
    font-size: 1rem;
    color: #9ca3af;
}

.footer-item a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-item a:hover {
    text-decoration: underline;
}

.social-icon {
    font-size: 1.2rem;
    margin-top: 15px;
    display: inline-block;
}

.social-icon a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-icon a:hover {
    color: #ffffff;
}

.social-icon svg {
    width: 25px;
    height: 25px;
    transition: fill 0.3s;
}

.social-icon a:hover svg {
    fill: #ffffff;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        width: 90%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-item {
        justify-content: center;
    }
}