* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
}


/* Contact Info Section */
.contact-info {
    background: white;
    border-radius: 8px;
    text-align: justify;
}

    .contact-info h1 {
        font-size: 2.2rem;
        color: #2c3e50;
        border-bottom: 2px solid #f0f0f0;
    }

    .contact-info p {
        margin-bottom: 0.5rem;
        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;
        }


/* Responsive Design */
@media (max-width: 768px) {

    .contact-info {
        padding: 0;
    }

        .contact-info h1 {
            font-size: 1.8rem;
        }

        .contact-info h2 {
            font-size: 1.5rem;
        }

    .contact-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 0;
    }

        .contact-info h1 {
            font-size: 1.6rem;
        }

    .contact-section {
        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);
    }

