/* OCLC - One Click Learning Centre - Complete Styles */

/* === VARIABLES === */
:root {
    --primary: #1e7b4e;
    --primary-dark: #155d3a;
    --primary-light: #2a9d64;
    --secondary: #f8b500;
    --secondary-light: #ffc933;
    --accent: #e74c3c;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { color: var(--gray); }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 123, 78, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 123, 78, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon { font-size: 1.8rem; }

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.logo-img {
  height: 45px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* === PAGE HEADER (for inner pages) === */
.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
    text-align: center;
}

.page-header .section-header {
    margin-bottom: 0;
}

.page-header h1 {
    color: var(--dark);
    margin-bottom: 15px;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #d1fae5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(30,123,78,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero h1 {
    color: var(--dark);
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-illustration {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background-image: url("assets/images/logo.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}


.student-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.student-avatar { font-size: 2.5rem; }

.student-info { display: flex; flex-direction: column; }

.student-name {
    font-weight: 600;
    color: var(--dark);
}

.student-progress {
    font-size: 0.85rem;
    color: var(--primary);
}

/* === SECTION COMMON === */
section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
}

/* === ABOUT SECTION === */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-card {
    background: var(--light);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: var(--white);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--light);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* === SUBJECTS SECTION === */
.subjects {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.subject-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.subject-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.subject-card h2,
.subject-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.subject-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.subject-card ul {
    list-style: none;
}

.subject-card li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.subject-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* === TEACHERS SECTION === */
.teachers {
    background: var(--white);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.teacher-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.teacher-avatar {
    font-size: 4rem;
    margin-bottom: 15px;
}

.teacher-card h2,
.teacher-card h3 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.teacher-title {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.teacher-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.teacher-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray);
}

/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
}

.testimonials .section-tag {
    background: var(--secondary);
    color: var(--dark);
}

.testimonials .section-header h2,
.testimonials .section-header h1,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    display: block;
}

.author-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* === PRICING === */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: var(--light);
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    background: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card.featured .pricing-badge {
    background: var(--primary);
    color: var(--white);
}

.pricing-card h2,
.pricing-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-amount {
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary);
    vertical-align: top;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-period {
    color: var(--gray);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-light);
}

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

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--gray);
}

/* === SCHEDULE === */
.schedule {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.schedule-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.schedule-day {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.schedule-hour {
    color: var(--gray);
    margin-bottom: 15px;
}

.schedule-status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-status.available {
    background: #d1fae5;
    color: #047857;
}

.schedule-status.limited {
    background: #fef3c7;
    color: #d97706;
}

/* === FAQ === */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* === CONTACT === */
.contact {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding-top: 140px;
}

.contact .section-tag {
    background: var(--secondary);
    color: var(--dark);
}

.contact .section-header h1,
.contact .section-header h2,
.contact .section-header p {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 123, 78, 0.1);
}

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

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

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-card h2,
.contact-card h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* === FOOTER === */
.footer {
    background: #0f0f1a;
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-light);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.wa-text {
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-image { display: none; }
    .hero { justify-content: center; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-features, .hero-buttons, .trust-badges { justify-content: center; }
    .teachers-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .about-grid, .subjects-grid, .testimonials-grid, .pricing-grid, .schedule-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .whatsapp-float { padding: 12px 20px; }
    .wa-text { display: none; }
    .teachers-grid { grid-template-columns: 1fr; }
    
    .hero h1 {
        font-size: 2rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .container {
        padding: 0 15px;
    }
    
    .page-header {
        padding: 120px 15px 40px;
    }
    
    .contact {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    section { padding: 60px 0; }
    .hero { padding: 100px 15px 50px; }
    .trust-badges { flex-direction: column; gap: 15px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 32px;
  }

  .hero-illustration {
    width: 260px;
    height: 260px;
  }
}
/* Ensure the checkbox and text are side-by-side */
.form-checkbox-group {
    display: flex;
    align-items: flex-start; /* Aligns checkbox with the top of the text */
    gap: 12px;
    margin-bottom: 15px;
    width: 100%;
}

/* Prevents the checkbox from being squashed */
.form-checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
    margin-top: 4px; /* Manual adjustment to line up with text */
    flex-shrink: 0; /* Important: stops the box from turning into a sliver */
}

/* Ensures the label text wraps naturally */
.form-checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark);
    cursor: pointer;
}
@media (max-width: 768px) {
    .contact-form-container {
        padding: 15px; /* Gives the form fields more horizontal room */
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.form-checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.form-checkbox-group {
    white-space: normal;
    word-break: break-word;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}

