/* =================================================================ative / Main Stylesheet ================================================================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #4d3d4a;
}

/* Features Section Styling */
.features-section {
    width: 100%;
    padding: 40px 22px;
    background-color: #fff9f5;
    /* Light warm tint matching brand palette */
    border-top: 1px solid #fde0cd;
    border-bottom: 1px solid #fde0cd;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    min-height: 245px;
    padding: 28px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f2d2b6;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(226, 135, 67, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(226, 135, 67, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fef0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #e28743;
    /* Brand Orange */
}

.feature-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    color: #4d3d4a;
}

.feature-box p {
    max-width: 280px;
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #6c5868;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .features-section {
        padding: 20px 14px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-box {
        min-height: 210px;
    }
}