/* Base styles with prefixed class names to avoid WordPress conflicts */
:root {
  --ote-primary: #667eea;
  --ote-secondary: #764ba2;
  --ote-accent: #ff5f6d;
  --ote-purple-light: #fbc2eb;
  --ote-pink: #ff5f6d;
  --ote-orange: #ffc371;
  --ote-yellow: #f9d423;
  --ote-text-dark: #333333;
  --ote-text-light: #ffffff;
  --ote-text-gray: #666666;
  --ote-bg-light: #fafafa;
  --ote-bg-white: #ffffff;
  --ote-border-radius: 15px;
  --ote-container-width: 1240px;
  --ote-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --ote-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --ote-transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
  color: var(--ote-text-dark);
  line-height: 1.6;
  background-color: var(--ote-bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
.ote-h1,
.ote-h2,
.ote-h3,
.ote-h4,
.ote-h5,
.ote-h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.ote-hero-h1,
.ote-hero-h2,
.ote-hero-h3,
.ote-hero-h4,
.ote-hero-h5,
.ote-hero-h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.ote-hero-h1 {
  font-size: 2rem;
}

.ote-hero-h2 {
  font-size: 1.8rem;
}

.ote-hero-h3 {
  font-size: 1.5rem;
}

.ote-hero-p {
  margin-bottom: 1rem;
}

.ote-h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

.ote-h2 {
  font-size: 2rem;
  font-weight: 700;
}

.ote-h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.ote-p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.ote-text-center {
  text-align: center;
}

/* Lists */
.ote-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.ote-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Layout system */
.ote-container {
  width: 100%;
  max-width: var(--ote-container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.ote-hero-section {
  padding: 30px 0;
}

.ote-section {
  padding: 50px 0;
}

.ote-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.ote-col {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* Components */
.ote-btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 30px;
  transition: var(--ote-transition);
  text-decoration: none;
  color: var(--ote-text-light);
  background: linear-gradient(45deg, var(--ote-primary), var(--ote-secondary));
  box-shadow: var(--ote-shadow-sm);
}

.ote-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--ote-shadow);
  color: var(--ote-text-light);
  text-decoration: none;
}

.ote-btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.125rem;
}

.ote-btn-light {
  background: var(--ote-bg-white);
  color: var(--ote-primary);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.ote-btn-light:hover {
  color: var(--ote-primary);
}

.ote-card {
  background-color: var(--ote-bg-white);
  border-radius: var(--ote-border-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--ote-shadow-sm);
  transition: var(--ote-transition);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.ote-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ote-shadow);
}

.ote-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.ote-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  color: var(--ote-text-light);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.ote-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.ote-rating {
  color: #ffd700;
  margin-top: 5px;
}

/* Contact Page Styles */
.ote-contact-info {
  margin-top: 1.5rem;
}

.ote-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: var(--ote-border-radius);
  border-left: 4px solid var(--ote-primary);
}

.ote-contact-icon {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  color: var(--ote-text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Privacy Page Styles */
.ote-privacy-highlight {
  background: linear-gradient(to right, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  padding: 1.5rem;
  border-radius: var(--ote-border-radius);
  margin-bottom: 2rem;
  border-left: 4px solid var(--ote-primary);
}

.ote-privacy-promise {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  padding: 2rem;
  border-radius: var(--ote-border-radius);
  margin-top: 2rem;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

/* CTA Section */
.ote-cta-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(102, 126, 234, 0.1);
}

/* Section-specific styles */
.ote-hero {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  color: var(--ote-text-light);
  text-align: center;
  padding: 60px 0;
}

.ote-hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Features Section - White background */
.ote-features {
  background-color: var(--ote-bg-white);
  color: var(--ote-text-dark);
}

.ote-features .ote-h2 {
  color: var(--ote-text-dark);
}

.ote-features .ote-card {
  color: var(--ote-text-dark);
  background: var(--ote-bg-white);
  backdrop-filter: none;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

/* How It Works Section - New gradient background */
.ote-how-it-works {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--ote-text-light);
}

.ote-how-it-works .ote-h2 {
  color: var(--ote-text-light);
}

.ote-how-it-works .ote-card {
  color: var(--ote-text-dark);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Benefits Section - White background */
.ote-benefits {
  background-color: var(--ote-bg-white);
}

.ote-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--ote-bg-white);
  border-radius: var(--ote-border-radius);
  box-shadow: var(--ote-shadow-sm);
  border-left: 4px solid var(--ote-primary);
}

.ote-check-icon {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  color: var(--ote-text-light);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Testimonials Section - Gradient background */
.ote-testimonials {
  background: linear-gradient(135deg, var(--ote-purple-light), #a6c1ee);
  color: var(--ote-text-dark);
}

.ote-testimonials .ote-h2 {
  color: var(--ote-text-dark);
}

.ote-testimonial {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--ote-border-radius);
  padding: 1.5rem;
  box-shadow: var(--ote-shadow-sm);
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ote-testimonial-content {
  flex: 1;
}

/* FAQ Section - White background */
.ote-faq {
  background-color: var(--ote-bg-white);
}

/* Bootstrap Accordion Overrides */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
}

.ote-faq-item.accordion-item {
  margin-bottom: 15px;
  border-radius: var(--ote-border-radius);
  background: linear-gradient(to right, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  box-shadow: var(--ote-shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: var(--ote-transition);
}

.ote-faq-item.accordion-item:hover {
  box-shadow: var(--ote-shadow);
  transform: translateY(-2px);
}

.ote-faq-question.accordion-button {
  padding: 15px 20px;
  position: relative;
  font-weight: 600;
  transition: var(--ote-transition);
  color: var(--ote-primary);
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 1rem;
}

.ote-faq-question.accordion-button:not(.collapsed) {
  color: var(--ote-primary);
  background: rgba(102, 126, 234, 0.1);
  box-shadow: none;
}

.ote-faq-question.accordion-button:hover {
  background-color: rgba(102, 126, 234, 0.1);
}

.ote-faq-question.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.ote-faq-question.accordion-button::after {
  background-image: none;
  content: "▼";
  color: var(--ote-primary);
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.ote-faq-question.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.ote-faq-answer.accordion-body {
  padding: 0 20px 20px;
  background-color: white;
  border-top: none;
}

.accordion-collapse {
  border: none;
}

/* Remove default Bootstrap accordion styles we don't want */
.accordion-button:not(.collapsed) {
  color: var(--ote-primary);
  background-color: rgba(102, 126, 234, 0.1);
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--ote-border-radius);
  border-top-right-radius: var(--ote-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: var(--ote-border-radius);
  border-bottom-right-radius: var(--ote-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-left-radius: var(--ote-border-radius);
  border-bottom-right-radius: var(--ote-border-radius);
}

.ote-cta {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  color: var(--ote-text-light);
  text-align: center;
  padding: 60px 0;
}

.ote-mb-1 {
  margin-bottom: 0.5rem;
}

.ote-mb-2 {
  margin-bottom: 1rem;
}

.ote-mb-3 {
  margin-bottom: 1.5rem;
}

.ote-mb-4 {
  margin-bottom: 2rem;
}

.ote-mb-5 {
  margin-bottom: 2.5rem;
}

.ote-gradient-text {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Page-specific styles for other pages */
.ote-page-header {
  background: linear-gradient(135deg, var(--ote-primary), var(--ote-secondary));
  padding: 50px 0;
  text-align: center;
  color: white;
}

.ote-page-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ote-page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.ote-page-content {
  padding: 50px 0;
  background: #f8f9fa;
}

.ote-content-wrapper {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1240px;
  margin: 0 auto;
}

/* Add a new class for narrower content when needed */
.ote-content-wrapper-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.ote-form-group {
  margin-bottom: 20px;
}

.ote-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.ote-form-input,
.ote-form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.ote-form-input:focus,
.ote-form-textarea:focus {
  outline: none;
  border-color: var(--ote-primary);
}

.ote-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.ote-submit-btn {
  background: linear-gradient(45deg, var(--ote-primary), var(--ote-secondary));
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ote-submit-btn:hover {
  transform: translateY(-2px);
}

/* Contact Form 7 Styles */
.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  width: 100%;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  font-family: inherit;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--ote-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wpcf7-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.wpcf7-submit {
  background: linear-gradient(45deg, var(--ote-primary), var(--ote-secondary));
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

/* Contact Form 7 validation styles */
.wpcf7-not-valid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

.wpcf7-validation-errors {
  background: linear-gradient(to right, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 1px solid #dc3545;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #dc3545;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background: linear-gradient(to right, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border: 1px solid #28a745;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #28a745;
  font-weight: 500;
}

.wpcf7-mail-sent-ng {
  background: linear-gradient(to right, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  border: 1px solid #dc3545;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #dc3545;
  font-weight: 500;
}

.wpcf7-spam-blocked {
  background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: #856404;
  font-weight: 500;
}

/* Loading spinner for Contact Form 7 */
.wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive styles for Contact Form 7 */
@media (max-width: 767px) {
  .wpcf7-form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .wpcf7-submit {
    padding: 10px 25px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .wpcf7-validation-errors,
  .wpcf7-mail-sent-ok,
  .wpcf7-mail-sent-ng,
  .wpcf7-spam-blocked {
    padding: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .wpcf7-form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .wpcf7-submit {
    padding: 8px 20px;
    font-size: 0.95rem;
  }

  .wpcf7-form label {
    font-size: 0.95rem;
  }
}

/* Additional styling for better integration */
.wpcf7-form p {
  margin-bottom: 20px;
}

.wpcf7-form br {
  display: none;
}

/* Style for required field indicators */
.wpcf7-form .wpcf7-validates-as-required {
  position: relative;
}

.wpcf7-form label {
  position: relative;
}

/* Custom styling for form layout */
.wpcf7-form > p {
  margin-bottom: 20px;
}

.wpcf7-form > p:last-child {
  margin-bottom: 0;
  text-align: left;
}

/* Ensure proper spacing */
.wpcf7-form-control-wrap {
  margin-bottom: 0;
}

/* Responsive styles - Mobile First approach */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .ote-h1 {
    font-size: 3rem;
  }

  .ote-h2 {
    font-size: 2.2rem;
  }

  .ote-h3 {
    font-size: 1.4rem;
  }

  .ote-p {
    font-size: 1.05rem;
  }

  .ote-hero {
    padding: 70px 0;
  }

  .ote-section {
    padding: 60px 0;
  }

  .ote-card {
    padding: 2rem;
  }

  .ote-icon {
    font-size: 2.8rem;
  }

  .ote-page-header {
    padding: 60px 0;
  }

  .ote-page-title {
    font-size: 2.5rem;
  }

  .ote-content-wrapper {
    padding: 40px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .ote-col-md-6 {
    width: 50%;
  }

  .ote-col-md-4 {
    width: 33.333333%;
  }

  .ote-col-md-3 {
    width: 25%;
  }

  .ote-col-md-8 {
    width: 66.666667%;
  }

  .ote-h1 {
    font-size: 3.5rem;
  }

  .ote-h2 {
    font-size: 2.5rem;
  }

  .ote-h3 {
    font-size: 1.5rem;
  }

  .ote-hero-h1 {
    font-size: 2.8rem;
  }

  .ote-hero-h2 {
    font-size: 1.8rem;
  }

  .ote-hero-h3 {
    font-size: 1.5rem;
  }

  .ote-hero {
    padding: 80px 0;
  }

  .ote-section {
    padding: 70px 0;
  }

  .ote-page-header {
    padding: 70px 0;
  }

  .ote-page-title {
    font-size: 2.8rem;
  }

  .ote-content-wrapper {
    padding: 50px;
  }

  .ote-testimonial {
    padding: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .ote-container {
    padding: 0 20px;
  }

  .ote-h1 {
    font-size: 4rem;
  }

  .ote-h2 {
    font-size: 2.8rem;
  }

  .ote-h3 {
    font-size: 1.75rem;
  }

  .ote-p {
    font-size: 1.1rem;
  }

  .ote-hero {
    padding: 100px 0;
  }

  .ote-section {
    padding: 80px 0;
  }

  .ote-page-header {
    padding: 80px 0;
  }

  .ote-page-title {
    font-size: 3rem;
  }

  .ote-content-wrapper {
    padding: 60px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .ote-container {
    padding: 0;
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .ote-hero-section {
    padding: 30px 0;
  }

  .ote-hero {
    padding: 50px 0;
  }

  .ote-section {
    padding: 40px 0;
  }

  .ote-testimonial {
    flex-direction: column;
  }

  .ote-avatar {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .ote-col-md-3,
  .ote-col-md-4 {
    width: 100%;
  }

  .ote-features .ote-col,
  .ote-how-it-works .ote-col {
    margin-bottom: 20px;
  }

  .ote-benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
  }

  .ote-check-icon {
    align-self: center;
    margin-bottom: 0.5rem;
  }

  .ote-contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .ote-contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .ote-card {
    padding: 1.5rem;
    text-align: center;
  }

  .ote-btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .ote-page-header {
    padding: 40px 0;
  }

  .ote-page-title {
    font-size: 2rem;
  }

  .ote-page-subtitle {
    font-size: 1rem;
  }

  .ote-content-wrapper {
    padding: 25px;
    border-radius: 15px;
  }

  .ote-faq-question.accordion-button {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .ote-faq-answer.accordion-body {
    padding: 0 15px 15px;
  }

  .ote-privacy-highlight,
  .ote-privacy-promise {
    padding: 1.25rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .ote-h1 {
    font-size: 1.8rem;
  }

  .ote-h2 {
    font-size: 1.6rem;
  }

  .ote-h3 {
    font-size: 1.1rem;
  }

  .ote-p {
    font-size: 0.95rem;
  }

  .ote-card {
    padding: 1.25rem;
  }

  .ote-step {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .ote-icon {
    font-size: 1.8rem;
  }

  .ote-hero {
    padding: 40px 0;
  }

  .ote-section {
    padding: 30px 0;
  }

  .ote-page-header {
    padding: 30px 0;
  }

  .ote-page-title {
    font-size: 1.8rem;
  }

  .ote-content-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .ote-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .ote-btn-lg {
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
  }

  .ote-mb-5 {
    margin-bottom: 1.5rem;
  }
}

/* Print styles */
@media print {
  .ote-btn,
  .accordion-button::after {
    display: none !important;
  }

  .ote-card:hover {
    transform: none;
    box-shadow: none;
  }

  .accordion-collapse {
    display: block !important;
  }

  .ote-content-wrapper {
    box-shadow: none;
  }

  .ote-hero,
  .ote-how-it-works,
  .ote-cta {
    background: none !important;
    color: #000 !important;
  }

  .ote-h1,
  .ote-h2,
  .ote-h3 {
    color: #000 !important;
  }
}
