body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 90px;
}

.menu-icon {
    font-size: 34px;
    color: white;
    cursor: pointer;
}

.phone-bar {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.phone-icon {
    font-size: 18px;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
}

.hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1.6), transparent);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.hero-text h2 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.hero-text p {
    color: #da5e28;
    font-size: 20px;
    margin: 5px 0 0;
}

.about {
    padding: 30px 20px;
    background-color: white;
    text-align: center;
}

.about h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333333;
}

.about p {
    font-size: 16px;
    color: #333333;
    line-height: 1.6; 
    padding: 8px;
}

.contact {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact a {
    color: #ff6a00;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .hero {
      height: 500px;        
    }

    .hero-image {
        height: 500px;
    }

    .hero-text h2{
       font-size: 52px; 
    }

    .hero-text p{
        font-size: 46px;
    }

    .about h3{
        font-size: 35px;
    }

    .about p {
        font-size: 29px;
    }

    .contact h3 {
        font-size: 35px;
    }

    .contact a {
        font-size: 29px;
    }

    .contact p {
        font-size: 29px;
    }

    .phone-bar {
        font-size: 29px;
    }

    .phone-icon {
        font-size: 31px;
    }

    .logo img {
        height: 110px;
    }

    .menu-icon {
        font-size: 45px;
    }
  }