

#contact-page-font {
    font-family: 'Anek Bangla', sans-serif !important;
}

.stay-update-02-section-container {
    font-family: 'Anek Bangla', sans-serif !important;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 550px; /* Match original card width */
    margin: 2rem auto; /* Center the container */
    overflow: hidden;
}

/* Input field style */
.stay-update-02-input-field {
    border: 1px solid #e2e8f0; border-radius: 8px; padding: 12px 16px;
    transition: all 0.3s ease; background-color: white; color: #1a1a1a;
    -webkit-appearance: none; appearance: none; width: 100%; box-sizing: border-box;
}
select.stay-update-02-input-field {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
     background-position: right 0.5rem center; background-repeat: no-repeat;
     background-size: 1.5em 1.5em; padding-right: 2.5rem;
}
.stay-update-02-input-field::placeholder { color: #a0aec0; }
.stay-update-02-input-field:focus {
    border-color: #1a1a1a; box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.1); outline: none;
}
/* Prefixed invalid state */
.stay-update-02-input-field.stay-update-02-invalid {
     border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Button styles */
.stay-update-02-btn {
    border-radius: 8px; padding: 12px 24px; font-weight: 600;
    transition: all 0.3s ease; position: relative; overflow: hidden;
    border: 2px solid transparent; z-index: 1; display: inline-flex;
    align-items: center; justify-content: center; cursor: pointer;
}
.stay-update-02-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.stay-update-02-btn-primary {
    background-color: #1a1a1a; color: white; border-color: #1a1a1a;
}
.stay-update-02-btn-primary:after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
    background-color: white; transition: all 0.3s ease; z-index: -1;
}
.stay-update-02-btn-primary:hover:not(:disabled) { color: #1a1a1a; }
.stay-update-02-btn-primary:hover:not(:disabled):after { height: 100%; }

/* Checkbox style */
.stay-update-02-styled-checkbox-label {
    display: flex; align-items: center; cursor: pointer; color: #4a4a4a;
    font-size: 0.875rem; transition: color 0.2s ease;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    background-color: #fff;
}
 .stay-update-02-styled-checkbox-label:hover {
     background-color: #f8f9fa; /* Hover effect */
 }
.stay-update-02-styled-checkbox {
    appearance: none; -webkit-appearance: none; width: 18px; height: 18px;
    border: 2px solid #4a4a4a; border-radius: 4px; margin-right: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease; flex-shrink: 0; position: relative;
}
.stay-update-02-styled-checkbox:checked { background-color: #1a1a1a; border-color: #1a1a1a; }
input[type="checkbox"].stay-update-02-styled-checkbox:checked:after {
    content: '✓'; color: white; font-size: 12px; font-weight: bold;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.stay-update-02-styled-checkbox:focus { outline: none; box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.1); }

/* Stay Updated Section Styles */
.stay-update-02-stay-updated-section {
    padding: 2rem; /* Padding */
    background-color: rgba(255, 255, 255, 0.7); /* Match card background */
}
.stay-update-02-stay-updated-section h3 {
    display: flex; align-items: center;
    font-size: 1.25rem; font-weight: 600; color: #1f2937;
    margin-bottom: 0.75rem;
}
.stay-update-02-stay-updated-section h3 svg {
    width: 1.75rem; height: 1.75rem; margin-right: 0.5rem;
    stroke: #4a4a4a; stroke-width: 1.5; fill: none;
}
/* Style specific SVG paths */
.stay-update-02-stay-updated-section h3 svg .line { stroke: #4a4a4a; }
.stay-update-02-stay-updated-section h3 svg .c { stroke: #4a4a4a; }

.stay-update-02-stay-updated-section p.stay-update-02-description {
    color: #6b7280; margin-bottom: 1.5rem; font-size: 0.875rem;
}
.stay-update-02-stay-updated-section .stay-update-02-interest-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Start with 1 column */
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
/* Adjust grid for medium screens */
@media (min-width: 480px) {
     .stay-update-02-stay-updated-section .stay-update-02-interest-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
     }
}
/* Adjust grid for larger screens */
@media (min-width: 640px) {
    .stay-update-02-stay-updated-section .stay-update-02-interest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 3 columns */
    }
}
.stay-update-02-stay-updated-section .stay-update-02-subscribe-button {
    width: 100%; /* Full width button */
}
#subscribeSuccessMsg { /* ID remains the same */
    color: #10b981; font-weight: 500; text-align: center;
    margin-top: 1rem; display: none; /* Hidden by default */
}
/* Error message styling */
 .stay-update-02-error-message {
    color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; display: none;
 }
 /* Prefixed visible state */
 .stay-update-02-error-message.stay-update-02-visible { display: block; }
