* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* background-color: #f8f9fa; */
    color: #333;
}

main {
    padding: 0.5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 1.5rem; */
}

/* Contact Info Section */
.contact-info {
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);*/
    /*padding: 0.5rem;*/
    text-align: justify;
}

    .contact-info h1 {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .contact-info p {
        margin-bottom: 1rem;
        color: #555;
        font-size: 1.05rem;
    }

    .contact-info h2 {
        font-size: 1.7rem;
        color: #2c3e50;
        margin: 1.5rem 0 1rem;
        border-bottom: 1px solid #eee;
    }

/* Contact Sections */
.contact-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

    .contact-section h3 {
        font-size: 1.4rem;
        color: #2980b9;
        margin-bottom: 1rem;
    }

    .contact-section p {
        margin-bottom: 0.8rem;
        color: #555;
    }

    .contact-section a {
        color: #3498db;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .contact-section a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

@media(max-width:1024px){
    main {
        margin-inline: 15%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {



    main {
        margin-inline: 10%;
    }

    .container {
        padding: 0;
    }

    .contact-info {
        padding: 0.5rem;
    }

        .contact-info h1 {
            font-size: 1.8rem;
        }

        .contact-info h2 {
            font-size: 1.5rem;
        }

    .contact-section h3 {
        font-size: 1.3rem;
    }
    .contact-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {

    main {
        margin-inline: 10px;
    }

    .contact-info {
        padding: 0;
    }

        .contact-info h1 {
            font-size: 1.3rem;
        }

        .contact-info h2 {
            font-size: 1.2rem;
        }

    .contact-section h3 {
        font-size: 1.1rem;
    }

    .contact-section,
    .office-address {
        padding: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}

/* Animation for Contact Sections */
.contact-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-section:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

