/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

main {
    flex: 1; /* Take up remaining space */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    text-align: left;
    margin: 0;
}

.nav-logo a:hover h2 {
    color: #1d4ed8; /* Slightly darker blue on hover */
    transition: color 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2563eb;
}

.cta-button {
  background: #2563eb !important;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1d4ed8 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #34495e 0%, #3d5a80 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2563eb;
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
}

.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

/* Features Section */
.features {
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.benefit-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  background: #f8fafc;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 3px solid #2563eb;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-card li:last-child {
  border-bottom: none;
}


/* Contact Section */
.contact {
    background: linear-gradient(to right, #34495e 0%, #3d5a80 100%);
    color: white;
    text-align: center;
}

.contact .section-title {
  color: white;
}

.contact-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-buttons {
  text-align: center;
  margin-top: 2rem;
}

.contact-info {
  opacity: 0.9;
}

/* Add this to ensure contact options section has enough height */
#contactOptions.contact {
    min-height: 400px; /* Adjust as needed */
    padding-bottom: 100px; /* Extra space at bottom */
}

/* Footer - modify existing styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
    position: relative; /* Changed from any potential absolute positioning */
    width: 100%;
    z-index: 1; /* Lower than your navbar's z-index of 1000 */
}

    /* Completely override any ASP.NET Core styles with the [b-x7kiy1kmy5] attribute */
    .footer[b-x7kiy1kmy5],
    .footer *[b-x7kiy1kmy5] {
        position: static !important;
        bottom: auto !important;
        white-space: normal !important;
        line-height: inherit !important;
        width: auto !important;
    }

/* Reorganized Footer Structure */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 2px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/*.footer-main {
    margin-bottom: 40px;
}*/

    .footer-main h3 {
        color: #2563eb;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-main p {
        color: #d1d5db;
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

.footer-sections {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 0; /* Prevent overflow issues */
}

.footer-section h4 {
    color: #2563eb;
   /* margin-bottom: 1rem;*/
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-section ul li {
        padding: 0.4rem 0;
    }

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-section a:hover {
        color: #2563eb;
    }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

    .footer-bottom a {
        color: #d1d5db;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #2563eb;
        }

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

/*    .footer-main {
        margin-bottom: 30px;
    }*/

    .footer-sections {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

/* Make the footer sections responsive */
@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }
}

/*.footer-section p {
    word-wrap:normal;
}*/

.footer-bottom {
    text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-option-btn {
  min-width: 200px;
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-option-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Feature Link Styling */
.feature-link {
    margin-top: 1.25rem;
}

.details-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .details-link span {
        display: inline-block;
        margin-left: 0.25rem;
        transition: transform 0.3s ease;
    }

    .details-link:hover {
        color: #1d4ed8;
    }

        .details-link:hover span {
            transform: translateX(4px);
        }
/* Details Page Styling */
.details-page {
    padding-top: 70px; /* Account for fixed navbar */
}

.details-header {
    background: linear-gradient(to right, #34495e 0%, #3d5a80 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.details-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.details-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.details-content {
    padding: 60px 0;
}

.details-section {
    margin-bottom: 60px;
}

    .details-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #1f2937;
    }

.details-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.details-feature-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .details-feature-item h3 {
        display: flex;
        align-items: center;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
    }

    .details-feature-item i {
        margin-right: 0.5rem;
        font-size: 1.5rem;
    }

.details-list {
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

    .details-list li {
        margin-bottom: 0.75rem;
        padding-left: 0.5rem;
    }

.details-cta {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.details-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .details-title {
        font-size: 2.25rem;
    }

    .details-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

        .details-buttons .btn-primary,
        .details-buttons .btn-outline {
            width: 100%;
            max-width: 300px;
        }

    .details-cta {
        padding: 2rem 1.5rem;
    }
}

/* Analytics Dashboard Specific Styles */
.dashboard-preview {
    margin: 3rem 0;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .metric-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    }

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.metric-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.metric-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .dashboard-preview {
        margin: 2rem 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Compliance Tracking Specific Styles */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.compliance-card {
    background: white;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .compliance-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    }

.compliance-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.compliance-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.compliance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.95rem;
    border-bottom: 1px dashed #e5e7eb;
}

    .compliance-card li:last-child {
        border-bottom: none;
    }

@media (max-width: 768px) {
    .compliance-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

/* Workflow Automation Specific Styles */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workflow-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .workflow-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.workflow-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2563eb;
}

.workflow-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.workflow-card p {
    color: #6b7280;
    font-size: 0.95rem;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
}

/* Spinner for form submission */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* About Us Page Styles */
.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.about-header h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
   /* background-color: #4CAF50;*/
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .about-section h2 {
        color: #2563eb;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

.about-section p {
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section p {
        font-size: 1rem;
    }
}

/* Values Section Styles */
.values-section {
    padding-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.value-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.05);
}

.value-card h3 {
    color: #2563eb;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 20px 10px;
}

.value-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-image {
        height: 180px;
    }
}

/* Privacy Policy Styles */
.privacy-link {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

    .privacy-link:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

.about-section ol,
.about-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: bottom 0.5s ease;
    border-top: 3px solid #2563eb;
}

    .cookie-consent.show {
        bottom: 0;
    }

.cookie-consent-content {
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-icon {
    flex-shrink: 0;
    margin-right: 20px;
    color: #2563eb;
}

.cookie-text {
    flex-grow: 1;
}

    .cookie-text h3 {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
        color: #1f2937;
    }

    .cookie-text p {
        margin: 0;
        font-size: 0.95rem;
        color: #6b7280;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 20px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-primary {
    background-color: #2563eb;
    color: white;
}

    .cookie-btn-primary:hover {
        background-color: #1d4ed8;
    }

.cookie-btn-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

    .cookie-btn-secondary:hover {
        background-color: #e5e7eb;
    }

.cookie-btn-link {
    background: none;
    color: #2563eb;
    text-decoration: underline;
    padding: 8px 10px;
}

    .cookie-btn-link:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-buttons {
        margin-left: 0;
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* Cookie Settings Panel Styles */
.cookie-settings-panel {
    display: none;
    padding: 20px;
    background-color: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.cookie-settings-panel.show {
    display: block;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-info {
    flex: 1;
}

.cookie-setting-info strong {
    display: block;
    margin-bottom: 5px;
    color: #1f2937;
}

.cookie-setting-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.cookie-setting-toggle {
    padding-left: 15px;
}

/* Toggle Switch */
.cookie-setting-toggle input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
    position: absolute;
}

.cookie-setting-toggle label {
    cursor: pointer;
    text-indent: -9999px;
    width: 45px;
    height: 24px;
    background: #ccc;
    display: block;
    border-radius: 100px;
    position: relative;
}

.cookie-setting-toggle label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.cookie-setting-toggle input:checked + label {
    background: #2563eb;
}

.cookie-setting-toggle input:checked + label:after {
    left: calc(100% - 3px);
    transform: translateX(-100%);
}

.cookie-settings-buttons {
    margin-top: 20px;
    text-align: right;
}

/* Disabled toggle styling */
.cookie-setting-toggle input:disabled + label {
    background: #2563eb;
    opacity: 0.7;
    cursor: not-allowed;
}
/* Analytics Charts Styles */
.analytics-container {
    margin: 2rem 0 3rem;
}

.analytics-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .analytics-filter label {
        font-weight: 600;
        color: #1f2937;
    }

    .analytics-filter select {
        padding: 0.5rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        background-color: white;
        min-width: 150px;
    }

.analytics-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.analytics-chart-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 1.5rem;
    height: 350px;
    position: relative;
}

    .analytics-chart-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #1f2937;
        text-align: center;
    }

@media (max-width: 768px) {
    .analytics-charts {
        grid-template-columns: 1fr;
    }

    .analytics-chart-container {
        height: 300px;
    }
}

/* Compliance Logos Styles */
/*.compliance-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.compliance-logo {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .compliance-logo:hover {
        transform: translateY(-3px);
    }

    .compliance-logo img {
        height: 40px;
        width: auto;
    }

    .compliance-logo span {
        margin-left: 0.75rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #d1d5db;
    }

@media (max-width: 768px) {
    .compliance-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .compliance-logo {
        width: 100%;
        justify-content: center;
    }
}*/

/* Support Page Styles */
.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-option-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.support-option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.support-option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.support-email, .support-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-email:hover, .support-phone:hover {
    color: #1d4ed8;
}

.support-response-time, .support-hours {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.support-form-container {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.support-form-container h2 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.support-form {
    margin-top: 2rem;
}

.support-faq {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .support-options {
        flex-direction: column;
    }
    
    .support-option-card {
        width: 100%;
    }
}

/* Support Form Labels - Fix white text issue */
.support-form .form-group label {
    color: #1f2937; /* Dark gray color */
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Support Form Input Fields */
.support-form .form-group input,
.support-form .form-group select,
.support-form .form-group textarea {
    border: 1px solid #d1d5db; /* Light gray border */
    background: white;
}

    .support-form .form-group input:focus,
    .support-form .form-group select:focus,
    .support-form .form-group textarea:focus {
        border-color: #2563eb; /* Blue border on focus */
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1); /* Subtle focus effect */
    }