 /* Modern Medical Hero Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #00a859;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-text: #2d3748;
    --gray-text: #4a5568;
    --light-gray: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

.medical-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 168, 89, 0.75) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    opacity: 0.9;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.accreditation-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.accreditation-badge i {
    margin-right: 8px;
    color: var(--white);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd700;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

button {
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta-primary:hover {
    background-color: #e6f2ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-primary i {
    margin-right: 10px;
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-secondary i {
    margin-right: 10px;
}

.trust-indicators {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    margin-right: 8px;
    color: #ffd700;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.products-placeholder {
    padding: 100px 20px;
    background-color: var(--light-bg);
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    button {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 25px 20px;
    }
    
    .accreditation-badge {
        font-size: 12px;
    }
}






/* Enhanced Product Catalog Styles */
.product-catalog {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 6px 12px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-details {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: white;
    color: var(--primary);
}

.product-content {
    padding: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-rating {
    color: #FFD700;
    font-size: 14px;
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.product-description {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

.molecular-structure {
    font-size: 12px;
    color: var(--gray-text);
}

.molecular-structure i {
    color: var(--primary);
    margin-right: 5px;
}

.product-cta {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.catalog-footer {
    text-align: center;
    margin-top: 50px;
}

.catalog-cta {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.catalog-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.catalog-cta i {
    margin-right: 10px;
}

.disclaimer {
    font-size: 12px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-catalog {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .catalog-cta {
        width: 100%;
        padding: 15px;
    }
}





/* Enhanced Medical Request Form Styles */
.info-request-section {
    background-color: #f8fafc;
    padding: 100px 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    background-color: #e6f2ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-description {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.request-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 50px;
    border: 1px solid #e2e8f0;
}

.medical-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 0.95rem;
}

label i {
    color: var(--primary);
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #334155;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
    background-color: white;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
}

.checkbox-option input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-option label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
    color: #475569;
    font-size: 0.9rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.terms-group {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.terms-group .checkbox-option label {
    font-size: 0.9rem;
}

.terms-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.terms-group a:hover {
    text-decoration: underline;
}

.submit-group {
    margin-top: 10px;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.submit-btn i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .request-container {
        padding: 30px;
    }
    
    .info-request-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .request-container {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 10px 14px;
    }
}



/* Medical Insights Section Styles */
.insights-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
}

.meta-category {
    color: var(--secondary);
    font-weight: 600;
}

.meta-date {
    color: var(--gray-text);
}

.insight-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.card-footer {
    margin-top: auto;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.card-link:hover {
    color: var(--primary-dark);
}

.card-link:hover i {
    transform: translateX(3px);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    background-color: var(--primary);
    color: white;
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-section {
        padding: 80px 0;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .insights-section {
        padding: 60px 0;
    }
    
    .view-all-link {
        width: 100%;
        justify-content: center;
    }
}





/* FOOTER & LEGAL */
.site-footer {
  background-color: #0B1B2B; /* dark navy */
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}

.site-footer .footer-content p {
  margin: 6px 0;
  line-height: 1.4;
}

.site-footer .disclaimer {
  font-style: italic;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer a {
  color: #28A745;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}


/* About Preview Section Styles */
.about-preview-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.about-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #0066cc;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: #0066cc;
    color: white;
}

.about-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0B1B2B;
}

.about-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #0066cc;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004d99;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.btn-primary i {
    margin-left: 10px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-preview-section {
        padding: 80px 0;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-preview-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}



/* Cookie Consent Styles */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.5s ease;
  font-family: 'Roboto', sans-serif;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content h3 {
  color: #0B1B2B;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.cookie-content p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.accept-btn {
  background-color: #0066cc;
  color: white;
}

.accept-btn:hover {
  background-color: #004d99;
  transform: translateY(-2px);
}

.settings-btn {
  background-color: #f0f0f0;
  color: #0B1B2B;
}

.settings-btn:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.reject-btn {
  background-color: transparent;
  color: #0B1B2B;
  border: 1px solid #e0e0e0;
}

.reject-btn:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
}

.cookie-policy-link {
  color: #0066cc;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-policy-link:hover {
  color: #004d99;
  text-decoration: underline;
}

/* Cookie Settings Modal */
.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-settings.active {
  display: flex;
}

.settings-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.settings-content h3 {
  color: #0B1B2B;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.cookie-option {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.cookie-option input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #0066cc;
}

.cookie-option label {
  color: #0B1B2B;
  font-size: 0.95rem;
  cursor: pointer;
}

.cookie-option label span {
  color: #718096;
  font-size: 0.8rem;
}

.settings-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}




/* Form Validation Styles */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-error-message {
    background-color: #fff5f5;
    color: #e53e3e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    border-left: 4px solid #e53e3e;
}

.form-error-message i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.form-success {
    text-align: center;
    padding: 30px;
    color: #00a859;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-success h3 {
    margin: 15px 0;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #718096;
    margin-top: 5px;
}

/* Error states for invalid fields */
input:invalid, select:invalid, textarea:invalid {
    border-color: #e53e3e !important;
    background-color: #fff5f5 !important;
}



/* Enable smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Basic animations */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}