/* General Styles */
body {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;    
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    background-color: #f0f0f0;
    padding: 20px 0;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #f8f8f8;
}

.hero .container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    width: 50%;
    margin-right: 40px;
    overflow: hidden;
}

.carousel img {
    width: 100%;
    display: none; 
}

.carousel img:first-child {
    display: block;
}

.hero-content {
    width: 50%;
}

.description {
    margin-bottom: 20px;
}

.description .uz {
    font-size: 0.9rem;
    color: #555;
}

#show-phone, #show-phone-cta {
    background-color: #ff8c00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#show-phone:hover, #show-phone-cta:hover {
    background-color: #e67300;
}

.phone-link {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.hidden {
    display: none;
}

/* Services Section */
.services {
    padding: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Responsive Image Styles */
.service-item img {
    max-width: 100%; /* Image will not exceed the width of its container */
    height: auto;    /* Height will adjust automatically to maintain aspect ratio */
    margin-bottom: 10px;
}

/* Advantages Section */
.advantages {
    padding: 40px 0;
    background-color: #f8f8f8;
}

.advantages ul {
    list-style: none;
    padding: 0;
}

.advantages li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.advantages li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8c00;
}

/* CTA Section */
.cta {
    padding: 40px 0;
    text-align: center;
    background-color: #ff8c00;
    color: #fff
}

.cta h2{
    color: #fff
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto; /* Changed to auto for better mobile scrolling */
    gap: 20px;
}

.review {
    min-width: 300px; 
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.author {
    font-style: italic;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: white;
}

.social-links img {
    width: 32px;
    height: 32px;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    .hero .container{
        flex-direction: column;
    }

    .carousel {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Change to a single column layout */
    }

    .reviews-carousel {
        flex-wrap: nowrap; /* Ensure items stay in a single line */
    }

    .
