* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-color: #f8f9fa; */
    color: #333;
    line-height: 1.6;
}

main {
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    text-align: justify;
}

    .contact-info h1 {
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .contact-info p {
        margin-bottom: 1.5rem;
        color: #555;
        font-size: 1.05rem;
    }

    .contact-info h2 {
        font-size: 1.7rem;
        color: #2c3e50;
        margin: 2.5rem 0 1.5rem;
        padding-bottom: 0.5rem;
        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;
        }

/* Office Address */
.office-address {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f5f7fa;
    border-radius: 6px;
    border-left: 4px solid #2ecc71;
}

    .office-address h2 {
        border-bottom: none;
        margin-top: 0;
    }

    .office-address strong {
        color: #2c3e50;
        font-weight: 600;
    }

address {
    font-style: normal;
    line-height: 1.7;
    margin-top: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

        .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: 1rem;
    }

        .contact-info h1 {
            font-size: 1.6rem;
        }

    .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);
    }

/* Dark Mode Styles */
.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

    .dark-mode .container {
        background-color: #121212;
    }

    .dark-mode .contact-info {
        background-color: #1e1e1e;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        border-color: #333;
    }

        .dark-mode .contact-info h1,
        .dark-mode .contact-info h2,
        .dark-mode .office-address strong {
            color: #f8f9fa;
            border-color: #444;
        }

        .dark-mode .contact-info p,
        .dark-mode address {
            color: #b0b0b0;
        }

    .dark-mode .contact-section {
        background-color: #2d2d2d;
        border-left-color: #4dabf7;
    }

        .dark-mode .contact-section h3 {
            color: #4dabf7;
        }

        .dark-mode .contact-section p {
            color: #d0d0d0;
        }

        .dark-mode .contact-section a {
            color: #64b5f6;
        }

            .dark-mode .contact-section a:hover {
                color: #90caf9;
            }

    .dark-mode .office-address {
        background-color: #2d2d2d;
        border-left-color: #2ecc71;
    }

    /* Interactive Elements */
    .dark-mode .contact-section:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    /* Form Elements (if you add them later) */
    .dark-mode input,
    .dark-mode textarea,
    .dark-mode select {
        background-color: #2d2d2d;
        color: #e0e0e0;
        border-color: #444;
    }

        .dark-mode input::placeholder {
            color: #999;
        }

    /* Footer (if included) */
    .dark-mode footer {
        background-color: #1e1e1e;
        color: #b0b0b0;
        border-top-color: #333;
    }

        .dark-mode footer a {
            color: #64b5f6;
        }

            .dark-mode footer a:hover {
                color: #90caf9;
            }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dark-mode .contact-info {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {

    .dark-mode .contact-section,
    .dark-mode .office-address {
        border-left-width: 3px;
    }
}
