body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.main-hero-section {
    background-color: #F3E4C9;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
}
.main-content {
    margin-left: 6%;
    margin-top: 50px;
}

.highlighted-main-content {
    color: #FAB95B;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
}

.highlighted-text {
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}


.sub-content {
    font-size: 70px;
    color: #E6501B;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 900;
    margin-bottom: 30px;
}

.heading-1 {
    color: white;
}

.main-info {
    color: white;
    font-size: 20px;
    width: 800px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* Heading */
.main-heading {
    text-align: center;
    margin-top: 20px;
}

.sub-heading {
    text-align: center;
    color: gray;
    margin-bottom: 30px;
}

/* Grid Layout */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Card */
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

/* Hover */
.card:hover {
    transform: translateY(-8px);
}

/* Image */
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Text */
.card h3 {
    margin: 10px 0 5px;
}

.card p {
    padding: 0 10px 15px;
    color: gray;
}
/* Button */
.btn {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: #E6501B;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
}

/* Hover effect */
.btn:hover {
    background: #eb1814;
}