/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2e; /* Dark background matching logo */
    color: #e0e0e0; /* Light text color for contrast */
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2b2b3d;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 50px; /* Adjust as needed */
}

header nav a {
    color: #e0e0e0;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #ff79c6; /* Pink from the gradient */
}

/* Links */
a {
    color: #ff79c6; /* Soft pink for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #bd93f9; /* Light purple on hover */
}
/* Main Content */
main {
    padding: 2rem;
    background: linear-gradient(135deg, #1e1e2e, #3e3e5e);
    border-radius: 8px;
    margin: 1rem auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Buttons */
button {
    background: linear-gradient(45deg, #8a2be2, #ff79c6); /* Purple to pink gradient */
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #ff79c6, #8a2be2); /* Invert gradient on hover */
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #2b2b3d;
    color: #a9a9b3;
    font-size: 0.9rem;
}

footer a {
    color: #ff79c6;
    text-decoration: none;
}

footer a:hover {
    color: #8a2be2;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.footer-address, .footer-contact {
    width: 45%;
}

.footer-address h4, .footer-contact h4 {
    color: #ff79c6;
    margin-bottom: 0.5rem;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #a9a9b3;
}