/* Hero Section */
.hero-section-index {
    background-image: url('../../assets/images/home/hero-home.png');
}

/* Services Section */
.services-section {
    background-color: #23221E;
    padding: 5rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    color: #F9C349;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: #2a2926;
    border: 2px solid #F9C349;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 195, 73, 0.2);
}

.service-card-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.service-card-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    color: #F9C349;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-button {
    display: inline-block;
    background-color: #F9C349;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.about-button:hover {
    background-color: #e0b03d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}