.contact-information {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    gap: 20px;
}

.address {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.address a,.address span {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    text-align: center;
    outline: none;
}

a {
  text-decoration: none;
}

.contact-info {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.gradient-outline-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 80px;
    letter-spacing: 0.1em;
    display: inline-block;

    background: linear-gradient(200deg,
            #ffc57a 0%,
            #C79A2B 40%,
            #f5c66f 60%,
            #a87300 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;

    color: #000 !important;
    -webkit-text-fill-color: #000 !important;

    -webkit-text-stroke: 1.5px transparent !important;

    text-shadow: 0 0 8px rgba(125, 162, 209, 0.3);
    transition: all 0.4s ease;
}


.gradient-outline-text:hover {
       /* filter: drop-shadow(0 0 10px rgba(255, 220, 150, 0.4)) drop-shadow(0 0 10px rgba(231, 183, 110, 0.35)) drop-shadow(0 0 10px rgba(219, 172, 102, 0.2)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4)); */
    filter:drop-shadow(0 0 2px rgba(255, 220, 150, 0.4)) drop-shadow(0 0 2px rgba(231, 183, 110, 0.35)) drop-shadow(0 0 10px rgba(219, 172, 102, 0.2)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4))
    }

/* Responsive Contact Information Adjustments */

@media (max-width: 1600px) {
    .gradient-outline-text {
        font-size: 70px; /* Scale down for smaller laptops */
    }
}

@media (max-width: 1200px) {
    .gradient-outline-text {
        font-size: 50px; /* Scale down for smaller laptops */
    }
}

@media (max-width: 768px) {
    .contact-information {
        margin-top: 60px; /* Tighter spacing for mobile */
        padding: 0 20px;
    }

    .address a, .address span {
        font-size: 18px; /* Scale down the address text */
    }

    .gradient-outline-text {
        font-size: 30px; /* Scale down phone/email for tablets */
        letter-spacing: 0.05em;
        -webkit-text-stroke: 1px transparent !important; /* Thinner stroke for smaller text */
    }
}

@media (max-width: 480px) {
    .contact-information {
        gap: 15px;
    }

    .address a, .address span {
        font-size: 16px;
        line-height: 1.4;
    }

    .gradient-outline-text {
        font-size: 18px; /* Essential: This prevents the long email from breaking the layout */
        word-break: break-all; /* Safety measure for very narrow screens */
        letter-spacing: normal;
    }
    
    .phone-number.contact-info .gradient-outline-text {
        font-size: 32px; /* Phone numbers can stay slightly larger than emails */
    }
}