* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0e1a2b; /* Dark navy blue background */
    color: #e0e0e0; /* Light text color */
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #16243d; /* Dark blue for container */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.language-switcher {
    text-align: right;
    margin-bottom: 15px;
}

#language-toggle {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#language-toggle:hover {
    background-color: #0078ff;
    transform: scale(1.1);
}

header h1 {
    color: #ffffff;
    font-size: 2.7em;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease-in-out;
}

header p {
    color: #bbbbbb;
    font-size: 1.2em;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

.header-image {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.cta {
    background-color: #1f2d46;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    animation: fadeIn 2.5s ease-in-out;
}

.cta h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buttons a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
    padding: 15px 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.whatsapp-button {
    background-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.messenger-button {
    background-color: #0078ff;
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.5);
}

.buttons i {
    font-size: 1.3em; /* Icon size */
}

.buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.marketing-details {
    background-color: #192a45;
    color: #e0e0e0;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.marketing-details h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.marketing-details ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.marketing-details ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.detail-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 120, 255, 0.5);
}

footer {
    margin-top: 40px;
    color: #bbbbbb;
}

footer p {
    font-size: 0.9em;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
