/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body{
    font-family: 'Inter', sans-serif;
    background:#f5f5f5;
    margin:0;
    padding:40px;
}

/* Main Container */

.product-section{
    max-width:1700px;
    margin:auto;
    border:1px solid #ddd;
    padding:35px 40px;
    border-radius:4px;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

/* Main Heading */

.product-section h2{
    font-size:35px;
    color:#1f2937;
    font-weight:700;
    margin-bottom:35px;
    line-height:1.0;
}

/* Sub Heading */

.product-section h3{
    font-size:27px;
    color:#222;
    font-weight:700;
    margin-bottom:28px;
    line-height:1.0;
}

/* Paragraph */

.product-section p{
    font-size:20px;
    color:#222;
    line-height:1.0;
    margin-bottom:28px;
    text-align:justify;
}

/* Bold Text */

.product-section strong{
    font-weight:700;
    color:#000;
}

/* Responsive */

@media(max-width:1200px){

.product-section{
    padding:25px;
}

.product-section h2{
    font-size:32px;
}

.product-section h3{
    font-size:24px;
}

.product-section p{
    font-size:17px;
    line-height:1.0;
}

}