body {
    font-family: 'Roboto', sans-serif;
    
	color:black;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    /* You can adjust the font weight, size, and other properties for headings */
}

p {
    font-family: 'Roboto', sans-serif;
    /* You can adjust the font size, line height, and other properties for paragraphs */
}
h1 {font-size: 2em;font-weight: 700;}

h2 {font-size: 1.5em;font-weight: 500;}

h3 {font-size: 1.5em;font-weight: 500;}

h4 {font-size: 1em;font-weight: 500;}

p {font-size: 1em;font-weight: 300;line-height: 1.4;}

.features {
    padding: 20px 0;
}

.feature-box {
    background-color: #ffffff;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: #ff6e42;
    margin-bottom: 10px;
}

h4 {
    font-size: 16px;
    color: #333333;
}

@media (max-width: 768px) {
    .feature-box {
        margin-bottom: 10px;
        padding: 15px;
    }

    .feature-icon {
        font-size: 30px;
    }

    h4 {
        font-size: 14px;
    }

    .col-xs-4, .col-sm-2 {
        width: 33.33%;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        font-size: 25px;
    }

    h4 {
        font-size: 12px;
    }

    .col-xs-4, .col-sm-2 {
        width: 33.33%;
        padding: 0 5px;
    }
}


