header#top {
    /* min-height: 100vh;
    background: url(../images/7.jpg) no-repeat center center; */
    background-size: cover;
    position: relative; 
    padding: 10px 0;
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}

.container3 {
    max-width: 85%;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.button-1:hover {
    background-color: rgba(230, 92, 0, 0.9);
    transform: scale(1.05);
}

 a.button-2 {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 30px;
    border-radius: 999px;
    margin: 10px;
    transition: all 0.3s ease;
}

a.button-2 {
    border: 2px solid white;
    color: white;
    background: none;
}

a.button-2:hover {
    background: white;
    color: #444;
}

.contact-info {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 18px;
    font-weight: bold;
}


@media (max-width: 768px) {
    .container3 {
        max-width: 90%;
        margin: 30px auto;
        padding: 15px;
    }
 

    h1, h2 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {  
    .container3 {
        max-width: 95%;
        margin: 20px auto;
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 12px;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-info p {
        font-size: 14px;
    }
  
}

