* {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", 'Roboto', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff5eb;
    position: relative;
}

.about-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.firecracker-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    padding: 1rem;
    text-align: justify;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    word-spacing: -0.1em; 
    letter-spacing: -0.05em; 
}

.learn-more-btn {
    text-decoration: none;
    background-color: #f15a22;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #d64d1b;
}


@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .about-title {
        font-size: 2rem; 
    }

    .section-title {
        font-size: 1.5rem; 
    }

    .about-image,
    .about-text {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .about-container {
        padding: 1.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}


@media (max-width: 480px) {
    .about-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .learn-more-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}



.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-title, .feature-description {
    transition: color 0.3s ease;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.feature-card:hover {
    background-color: #d64d1b;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-description {
    color: white;
}


.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 100%;
    height: 100%;
    color: #f15a22;
}

.feature-title {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}


.feature-description {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}




@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}
