body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #d3cce3, #e9e4f0);
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, color 0.3s;
}

.theme-toggle {
    text-align: center;
    margin-top: 10px;
}

#theme-toggle-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    height: 100px; /* Adjust height as needed */
    background-color: #2c3e50;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 80px; /* Adjust the size of the logo */
    max-width: 90%;
}

h1, h2 {
    color: #2c3e50;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
    margin-bottom: 20px;
}

.email-container {
    display: inline-block;
    position: relative;
    text-align: center;
}

.email-container input {
    border: none;
    background: none;
    font-size: 16px;
    color: #2c3e50;
    cursor: pointer;
    text-align: center;
    width: 300px;
}

.copy-btn {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .email-container input {
        font-size: 14px;
        padding-right: 60px;
    }

    .copy-btn {
        padding: 3px 8px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Dark Theme */
body.dark-theme {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
}

body.dark-theme .container {
    background: #2c3e50;
    color: #ecf0f1;
}

body.dark-theme h1, body.dark-theme h2 {
    color: #ecf0f1;
}

body.dark-theme .email-container input {
    color: #ecf0f1;
}

body.dark-theme .copy-btn, body.dark-theme #theme-toggle-btn {
    background-color: #34495e;
}

body.dark-theme .logo {
    background: linear-gradient(135deg, #2c3e50, #34495e); /* Same background as the rest of the page */
}
