.logo-container .logo,
.about-founder-img {
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid #fca311;
}

/* General Body & Layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

section {
    padding: 40px 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}
section:last-of-type {
    border-bottom: none;
}

h1, h2, h3 {
    color: #1d3557;
}

.language-switcher {
    padding: 10px 20px;
    text-align: right;
    background-color: #e9ecef;
}
.language-switcher label {
    color: #1d3557;
    font-weight: bold;
    margin-right: 8px;
}
.language-switcher select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Header & Hero Section */
.hero {
    text-align: center;
    padding: 20px;
    background-color: #1d3557;
    color: white;
}

.image-banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

/* Auth Buttons */
.auth-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.auth-buttons button {
    background-color: #fca311; /* A standout color */
    color: #14213d;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.auth-buttons button:hover {
    background-color: #e85d04;
}

.contact-hero { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; }
.contact-hero a {
    background-color: #007BFF;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-hero a:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.social-icons { margin-top: 25px; }
.social-icons a {
    color: #f1faee;
    font-size: 2.4rem;
    margin: 0 15px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #a8dadc;
}

/* General Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Center content vertically */
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 25px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px; /* Standardized width for auth modals */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover, .close:focus { color: black; }

.welcome-modal-content {
    background: linear-gradient(135deg, #1d3557, #457b9d);
    color: white;
    border: none;
    text-align: center;
}
.welcome-modal-content h2 { color: white; }
.welcome-modal-content .close { color: #e0e0e0; }
.welcome-modal-content .close:hover { color: white; }

#cookie-banner { display: none; align-items: flex-end; background-color: transparent; }
#cookie-banner .cookie-modal-content { width: 100%; max-width: 100%; margin: 0; border-radius: 0; background-color: #263238; color: white; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 15px; padding: 1rem; box-sizing: border-box; }
#cookie-banner p { margin: 0; flex-grow: 1; text-align: center; }
#cookie-banner button { background-color: #4CAF50; color: white; }
#cookie-banner button.service-grey { background-color: #f44336; }

/* Activity & Other Cards */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.activity-card { background-color: #457b9d; color: white; padding: 20px; border-radius: 8px; font-weight: bold; cursor: pointer; transition: transform 0.2s; }
.activity-card:hover { transform: translateY(-5px); }
.products-grid, .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.product-card, .service-card { background-color: white; border: 1px solid #ddd; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display: flex; flex-direction: column; justify-content: space-between; }
.product-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 5px; }
.details-btn.service-blue {
    background-color: #0d47a1; color: white; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; padding: 14px 22px; border: none; border-radius: 5px; cursor: pointer; margin-top: 15px; transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.details-btn.service-blue:hover { background-color: #002171; transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.25); }

/* Forms and Auth Modals */
form { display: flex; flex-direction: column; }
form label { text-align: left; margin-bottom: 5px; font-weight: bold; }
input[type="text"], input[type="email"], input[type="password"], textarea { width: 100%; padding: 12px; margin-bottom: 18px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
form button { background-color: #1565c0; color: white; padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: background-color 0.3s; }
form button:hover { background-color: #0d47a1; }

.password-requirements {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: -10px;
    margin-bottom: 15px;
    text-align: left;
}
.auth-message {
    margin-top: 1em;
    font-weight: bold;
    text-align: center;
}
.forgot-password {
    text-align: center;
    display: block;
    margin-top: 15px;
    color: #007BFF;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}

.password-wrapper {
  position: relative;
  width: 100%;
  display: flex;
}
.password-wrapper input {
  flex-grow: 1;
}
.password-wrapper .fa-eye,
.password-wrapper .fa-eye-slash {
  position: absolute;
  top: 35%; /* Adjust this value to vertically center the icon */
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #777;
}

/* Interactive FAQ Section */
.faq-list { text-align: left; max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 10px; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.faq-item dt { padding: 15px 20px; cursor: pointer; font-weight: bold; color: #1d3557; background-color: #f8f9fa; position: relative; padding-right: 50px; }
.faq-item dt:hover { background-color: #e9ecef; }
.faq-item dt::after { content: '+'; font-family: monospace; font-size: 24px; font-weight: bold; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); transition: transform 0.2s; }
.faq-item.active dt::after { content: '−'; }
.faq-item dd { display: none; padding: 15px 20px; background-color: #ffffff; margin: 0; border-top: 1px solid #e0e0e0; }
.faq-item.active dd { display: block; }

/* Footer and Contact */
.contact-social a { color: #1d3557; font-size: 2.8rem; margin: 0 12px; transition: color 0.3s, transform 0.2s; }
.contact-social a:hover { color: #007BFF; transform: scale(1.1); }
footer { background-color: #1d3557; color: #f1faee; text-align: center; padding: 30px 20px; margin-top: 30px; }
footer a { color: #a8dadc; }
footer a:hover { color: white; }

/* Chat Widget */
#chat-widget { position: fixed; bottom: 20px; right: 20px; z-index: 1001; }
#chat-icon { background-color: #1565c0; color: white; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 24px; cursor: pointer; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.chat-modal { display: none; position: fixed; bottom: 90px; right: 20px; width: 320px; background-color: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 1000; }
/* Add other chat styles as needed */