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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2d3d;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2d3d;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav ul li a:hover::before,
.nav ul li a.active::before {
    width: 80%;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #0abab5;
    background: rgba(10, 186, 181, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Sidebar */
.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-sidebar.active {
    left: 0;
}

.mobile-nav-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-header .logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.mobile-nav-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu {
    padding: 2rem 0;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu ul li a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu ul li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.mobile-nav-menu ul li a:hover::before,
.mobile-nav-menu ul li a.active::before {
    width: 20px;
}

.mobile-nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-right: 2.5rem;
}

.mobile-nav-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    color: white;
    padding: 8rem 0 4rem 0; /* Increased top padding to account for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    /* Fallback background if video doesn't load */
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 25%, #90caf9 50%, #64b5f6 75%, #0abab5 100%);
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Ensure video plays smoothly */
    will-change: transform;
    /* Optimize for performance */
    transform: translateZ(0);
}

/* Fallback image if video doesn't load */
.hero-fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.1;
}

/* Hide fallback background when video is loaded */
.hero:has(.hero-video[src]) {
    background: none;
}

/* Video fallback for older browsers */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Ensure video doesn't interfere with content */
.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hero Container and Content - positioned above video and overlay */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 7rem !important;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 2.5rem !important;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-cta {
    margin-top: 2rem;
}

/* Buttons */
/* Global Button Styles - Ensure all buttons look like buttons */
.btn {
    display: inline-block !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-align: center !important;
    line-height: 1.4 !important;
    min-height: 48px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Primary Button - Much Better */
.btn-primary {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%) !important;
    color: white !important;
    border: 2px solid #0abab5 !important;
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, #0abab5 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.4) !important;
    border-color: #0099cc !important;
}

.btn-primary:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3) !important;
}

/* Secondary Button - Much Better */
.btn-secondary {
    background: white !important;
    color: #0abab5 !important;
    border: 2px solid #0abab5 !important;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.1) !important;
    font-weight: 600 !important;
}

.btn-secondary:hover {
    background: #0abab5 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.2) !important;
    border-color: #0abab5 !important;
}

.btn-secondary:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.1) !important;
}

/* Large Button */
.btn-large {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    min-height: 56px !important;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-section h2 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    color: #0abab5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step p {
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-card .emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #0abab5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white;
}

.social-proof h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.social-proof p {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.testimonial-preview-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-preview-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-preview-card blockquote::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -10px;
    right: -10px;
}

.testimonial-preview-card cite {
    font-weight: bold;
    font-size: 1rem;
    opacity: 0.9;
}

/* Social Media Section */
.social-media {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.social-media h2 {
    margin-bottom: 2rem;
    color: #0abab5;
    font-size: 2.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Social Media Buttons - Much Better */
.social-link {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50 !important;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 600;
    min-height: 48px;
}

.social-link:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0abab5;
    color: #0abab5 !important;
}

/* Social Media Specific Colors */
.social-link.facebook:hover {
    border-color: #1877f2;
    color: #1877f2 !important;
}

.social-link.instagram:hover {
    border-color: #e4405f;
    color: #e4405f !important;
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000 !important;
}

.social-link.whatsapp:hover {
    border-color: #25d366;
    color: #25d366 !important;
}

.social-link i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #0abab5;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #0abab5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Footer Message Block */
.footer-message-block {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
    color: #fff;
}

.footer-message-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-message-form input,
.footer-message-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    padding: 8px 10px;
    color: #fff;
    font-size: 0.95rem;
}

.footer-message-form input::placeholder,
.footer-message-form textarea::placeholder {
    color: #cfdfe1;
}

.footer-message-form button {
    background: linear-gradient(135deg, #d4af37, #e5c45c);
    color: #223c4a;
    border: none;
    border-radius: 6px;
    padding: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.footer-message-form button:hover {
    filter: brightness(1.1);
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-message-block {
        order: 4;
        width: 100%;
        margin-top: 20px;
        max-width: none;
        min-width: auto;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* About Page Specific Styles */
.about {
    padding: 5rem 0;
    background: white;
}

.about h1 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #2c3e50;
}

.profile-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.3);
    position: relative;
    overflow: hidden;
}

.profile-placeholder i {
    font-size: 5rem;
    color: white;
}

.profile-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.qualifications {
    margin-top: 4rem;
}

.qualifications h2 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.qualification-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.qualification-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.qualification-item i {
    font-size: 3.5rem;
    color: #0abab5;
    margin-bottom: 1.5rem;
}

.qualification-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.qualification-item p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.mission {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.3);
}

.mission h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.mission p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

/* FAQ Page Specific Styles */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h1 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0abab5;
    box-shadow: 0 15px 35px rgba(10, 186, 181, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background: #f8f9fa;
}

.faq-question:hover {
    background-color: rgba(10, 186, 181, 0.1);
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-question i {
    color: #0abab5;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Old Header Structure Support */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 80%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #0abab5;
    background: rgba(10, 186, 181, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Responsive Design for Old Pages */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem 0 !important; /* Reduced top padding for mobile */
    }
    
    .hero-title {
        font-size: 3.5rem !important; /* Smaller font size to fit 2 words per line */
        word-break: keep-all !important; /* Prevents breaking Hebrew words */
        line-height: 1.1 !important; /* Tighter line height for mobile */
        max-width: 100% !important; /* Ensure full width usage */
        white-space: normal !important; /* Allow normal text wrapping */
        overflow-wrap: break-word !important; /* Break long words if needed */
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important; /* Smaller font size for mobile */
        word-break: keep-all !important; /* Prevents breaking Hebrew words */
        line-height: 1.3 !important; /* Better line height for mobile */
        white-space: normal !important; /* Allow normal text wrapping */
        overflow-wrap: break-word !important; /* Break long words if needed */
    }
}

/* Removed tablet overrides to keep desktop sizing. Mobile-only overrides remain below. */

/* Mobile Navigation and Layout */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 1rem 2rem;
        border-radius: 0;
        text-align: center;
        display: block;
    }
}

/* Process Page Specific Styles */
.workshop-header {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.workshop-header .main-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.workshop-header .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.workshop-description {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 3rem;
}

.workshop-description h2 {
    color: #0abab5;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.workshop-description p {
    font-size: 1.2rem;
    color: #2c3e50;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.workshop-benefits {
    padding: 3rem 0;
    background: #f8f9fa;
    margin-bottom: 3rem;
}

.workshop-benefits h3 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
}

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

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #0abab5;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.2);
}

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

.benefit-item h4 {
    color: #0abab5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.process-overview {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 3rem;
}

.process-overview h3 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 600;
}

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

.process-step {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: white;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.process-step h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-links {
    padding: 3rem 0;
    background: #f8f9fa;
    margin-bottom: 3rem;
}

.social-links h3 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-item:hover {
    transform: translateY(-3px);
    border-color: #0abab5;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.2);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0abab5;
}

.social-name {
    font-weight: 600;
    color: #0abab5;
    font-size: 1.1rem;
}

/* Responsive Design for Process Page */
@media (max-width: 768px) {
    .workshop-header .main-title {
        font-size: 2rem;
    }
    
    .workshop-header .subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact h1 {
    text-align: center;
    color: #0abab5;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
}

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

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.contact-method i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-method i.fa-whatsapp {
    color: #25D366;
}

.contact-method i.fa-phone,
.contact-method i.fa-envelope {
    color: #0abab5;
}

.contact-method h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-method p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #0abab5;
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0abab5;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact h1 {
        font-size: 2.5rem;
    }
    
    .contact-intro h2 {
        font-size: 1.8rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
}

/* Questionnaire Page Specific Styles */
.questionnaire-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.questionnaire-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.questionnaire-header h1 {
    color: #0abab5;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.questionnaire-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.questionnaire-header p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-note {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-right: 4px solid #0abab5;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0abab5;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
}

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

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.btn-submit {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.4);
}

.loading-spinner {
    display: inline-block;
    margin-left: 0.5rem;
}

.closing-message {
    text-align: center;
    margin-top: 2rem;
    color: #4a5568;
    font-style: italic;
}

/* Social Media Section */
.social-media {
    background: #f8fafc;
    padding: 4rem 0;
    text-align: center;
}

.social-media h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

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

.social-link i {
    font-size: 2rem;
}

.social-link.facebook i {
    color: #1877f2;
}

.social-link.instagram i {
    color: #e4405f;
}

.social-link.youtube i {
    color: #ff0000;
}

.social-link.whatsapp i {
    color: #25d366;
}

/* Group Workshop Page Specific Styles */
.workshop-hero {
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workshop-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.workshop-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.workshop-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: white;
}

.workshop-hero .hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.workshop-hero .hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.workshop-about {
    padding: 5rem 0;
    background: rgba(0, 212, 170, 0.05);
}

.workshop-about h2 {
    text-align: center;
    color: #00d4aa;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.workshop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.workshop-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-right: 4px solid #00d4aa;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #00d4aa;
    width: 30px;
    text-align: center;
}

.highlight-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.workshop-benefits {
    padding: 5rem 0;
    background: white;
}

.workshop-benefits h2 {
    text-align: center;
    color: #00d4aa;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #00d4aa;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.benefit-card .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1.1rem;
}

.process-details {
    padding: 5rem 0;
    background: rgba(0, 212, 170, 0.05);
}

.process-details h2 {
    text-align: center;
    color: #00d4aa;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

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

.process-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-item:hover {
    transform: translateY(-5px);
    border-color: #00d4aa;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0abab5;
    margin-bottom: 1rem;
}

.process-item h3 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-section h2 {
    text-align: center;
    color: #00d4aa;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 8rem;
    color: #00d4aa;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-card cite {
    font-weight: 600;
    color: #00d4aa;
    font-size: 1.1rem;
    font-style: normal;
}

.testimonial-card cite::before {
    content: '';
    width: 3px;
    height: 20px;
    background: linear-gradient(135deg, #00d4aa, #0099cc);
    margin-left: 10px;
    border-radius: 2px;
}

.stats-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.stat-item {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.4);
}

.stat-item .number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-description {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.cta-section .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-section .text-content {
    order: 1;
}

.cta-section .image-content {
    order: 2;
    text-align: center;
}

.cta-section .section-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.cta-section .section-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

.cta-btn {
    background: white;
    color: #0abab5;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: #0abab5;
}

/* Responsive Design for Testimonials Page */
@media (max-width: 768px) {
    .testimonials-hero h1 {
        font-size: 2.5rem;
    }

    .testimonials-hero p {
        font-size: 1.1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .stats-section h2 {
        font-size: 2rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-item .number {
        font-size: 3rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
    
    .cta-section .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section .image-content {
        order: 1;
    }
    
    .cta-section .text-content {
        order: 2;
    }
    
    .cta-section .section-image {
        max-width: 250px;
    }
    
    .cta-section .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

/* Responsive Design for Hero Video */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-video {
        object-position: center;
        /* Optimize for mobile */
        object-fit: cover;
    }
    
    /* Removed conflicting hero-title and hero-subtitle styles */
}

@media (max-width: 480px) {
    .hero {
        min-height: 50vh;
        padding: 8rem 0 2rem 0 !important; /* Reduced top padding for very small screens */
    }
    
    .hero-title {
        font-size: 2.5rem !important; /* Slightly larger to fit 2 words per line */
        word-break: keep-all !important; /* Prevents breaking Hebrew words */
        line-height: 1.1 !important; /* Very tight line height for small screens */
        max-width: 100% !important; /* Ensure full width usage */
        white-space: normal !important; /* Allow normal text wrapping */
        overflow-wrap: break-word !important; /* Break long words if needed */
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important; /* Slightly larger for readability */
        word-break: keep-all !important; /* Prevents breaking Hebrew words */
        line-height: 1.3 !important; /* Better line height for small screens */
        white-space: normal !important; /* Allow normal text wrapping */
        overflow-wrap: break-word !important; /* Break long words if needed */
    }
    
    .hero-video {
        /* Ensure video works well on small screens */
        object-position: center;
    }
}





/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content {
    order: 1;
}

.image-content {
    order: 2;
    text-align: center;
}

.section-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* About Section Specific Styling */
.about-section .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-section .image-content {
    order: 1;
    text-align: center;
}

.about-section .text-content {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.about-section .section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .section-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    text-align: right;
}

.about-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.about-buttons .btn {
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.about-buttons .btn-primary {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white !important;
    border: 2px solid #0abab5;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.4);
    background: linear-gradient(135deg, #0099cc 0%, #0abab5 100%);
    border-color: #0099cc;
}

.about-buttons .btn-secondary {
    background: white;
    color: #0abab5 !important;
    border: 2px solid #0abab5;
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.1);
}

.about-buttons .btn-secondary:hover {
    background: #0abab5;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.2);
    border-color: #0abab5;
}

/* New About Section Styling (without image) */
.about-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: right;
    padding: 2rem 0;
}

.about-text-content .about-description {
    font-size: 1.3rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: right;
}

.about-text-content .about-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.about-text-content .about-buttons .btn {
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.about-text-content .about-buttons .btn-primary {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white !important;
    border: 2px solid #0abab5;
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.3);
}

.about-text-content .about-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.4);
    background: linear-gradient(135deg, #0099cc 0%, #0abab5 100%);
    border-color: #0099cc;
}

.about-text-content .about-buttons .btn-secondary {
    background: white;
    color: #0abab5 !important;
    border: 2px solid #0abab5;
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.1);
}

.about-text-content .about-buttons .btn-secondary:hover {
    background: #0abab5;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.2);
    border-color: #0abab5;
}

/* Responsive Design for New About Section */
@media (max-width: 768px) {
    .about-text-content {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .about-text-content .about-description {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .about-text-content .about-buttons {
        align-items: center;
    }
    
    .about-text-content .about-buttons .btn {
        padding: 1rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-text-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .about-text-content .about-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .about-text-content .about-buttons {
        align-items: center;
    }
    
    .about-text-content .about-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* RTL Support for Hebrew */
.content-with-image {
    direction: rtl;
}

.text-content {
    direction: rtl;
    text-align: right;
}

/* Responsive Design for Content with Image */
@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-content,
    .image-content {
        order: unset;
    }
    
    .section-image {
        max-width: 300px;
    }
    
    .about-section .content-with-image {
        gap: 2rem;
    }
    
    .about-section .text-content {
        min-height: auto;
        order: 2;
    }
    
    .about-section .image-content {
        order: 1;
    }
    
    .about-buttons .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .content-with-image {
        gap: 1.5rem;
    }
    
    .section-image {
        max-width: 250px;
    }
    
    .about-section .section-image {
        max-width: 280px;
    }
    
    .about-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .about-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Free Tool Section */
.free-tool-section {
    background: linear-gradient(135deg, #fefefe 0%, #f8fdfd 25%, #f0fafa 50%, #e8f7f7 75%, #e0f4f4 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-tool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.free-tool-content {
    position: relative;
    z-index: 2;
}

.free-tool-section h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.free-tool-section p {
    color: #5a6c7d;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.free-tool-cta {
    margin-top: 2rem;
}

/* Free Tool Button - Much Better */
.btn-free-tool {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-free-tool:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 186, 181, 0.4);
    background: linear-gradient(135deg, #0099cc 0%, #0abab5 100%);
}

.btn-free-tool:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);
}

/* Responsive Design for Free Tool Section */
@media (max-width: 768px) {
    .free-tool-section {
        padding: 3rem 0;
    }
    
    .free-tool-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .free-tool-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-free-tool {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .free-tool-section {
        padding: 2.5rem 0;
    }
    
    .free-tool-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .free-tool-section p {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .btn-free-tool {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 350px;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
} 

/* About Page CTA Button - Specific Styling */
.about-page .cta-section .btn {
    display: inline-block !important;
    padding: 1.2rem 2.5rem !important;
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 15px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #0abab5 !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.about-page .cta-section .btn:hover {
    background: linear-gradient(135deg, #0099cc 0%, #0abab5 100%) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.4) !important;
    border-color: #0099cc !important;
}

.about-page .cta-section .btn:active {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3) !important;
} 

/* Responsive Design - Mobile First Approach */

/* Large screens (desktop) */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav {
        display: flex !important;
    }
}

/* Medium screens (tablet) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    /* Questionnaire adjustments */
    .questionnaire-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .questionnaire-header h1 {
        font-size: 2.2rem;
    }
    
    .questionnaire-header h2 {
        font-size: 1.3rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Social media adjustments */
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1.2rem;
    }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
    /* Header adjustments */
    .header .container {
        padding: 0.8rem 1rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    /* Hide desktop navigation on mobile */
    .nav {
        display: none !important;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* Hero section adjustments */
    .hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero-cta {
        margin-top: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Main content adjustments */
    .main-content {
        margin-top: 80px;
        padding: 1.5rem 0;
    }
    
    /* Section adjustments */
    .free-tool-section,
    .about-section,
    .features-section,
    .testimonials-section,
    .contact-section {
        padding: 2rem 0;
    }
    
    /* Grid adjustments */
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Card adjustments */
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Form adjustments */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    /* Button adjustments */
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section {
        width: 100%;
    }
    
    /* Footer message block mobile adjustments */
    .footer-message-block {
        width: 100% !important;
        max-width: none !important;
        min-width: auto !important;
        margin-top: 1.5rem !important;
        order: 4 !important;
    }
    
    .footer-message-form input,
    .footer-message-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Questionnaire mobile adjustments */
    .questionnaire-container {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 15px;
    }
    
    .questionnaire-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .questionnaire-header h1 {
        font-size: 2rem;
    }
    
    .questionnaire-header h2 {
        font-size: 1.2rem;
    }
    
    .questionnaire-header p {
        font-size: 1rem;
    }
    
    .privacy-note {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .checkbox-item {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Social media mobile adjustments */
    .social-media {
        padding: 2rem 0;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 80px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-link span {
        font-size: 0.9rem;
    }
    
    /* Workshop benefits grid adjustments */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    /* Contact methods grid adjustments */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    /* FAQ adjustments */
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
    
    /* About page adjustments */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-placeholder {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualification-item {
        padding: 1.5rem;
    }
    
    .my-approach,
    .mission {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .my-approach h2 {
        font-size: 1.8rem;
    }
    
    .my-approach p {
        font-size: 1.1rem;
    }
    
    .mission h2 {
        font-size: 1.8rem;
    }
    
    .mission p {
        font-size: 1.1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .header .container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo img {
        width: 35px;
        height: 35px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero {
        min-height: 45vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .main-content {
        margin-top: 70px;
        padding: 1rem 0;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    /* Extra small footer message block adjustments */
    .footer-message-block {
        padding: 12px !important;
        margin-top: 1rem !important;
    }
    
    .footer-message-form input,
    .footer-message-form textarea {
        font-size: 14px;
        padding: 10px 8px;
    }
    
    .footer-message-form button {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Extra small questionnaire adjustments */
    .questionnaire-container {
        padding: 0.8rem;
        margin: 0.3rem;
    }
    
    .questionnaire-header h1 {
        font-size: 1.8rem;
    }
    
    .questionnaire-header h2 {
        font-size: 1.1rem;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .checkbox-item {
        font-size: 0.8rem;
    }
    
    /* Extra small social media adjustments */
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
    
    /* Extra small workshop adjustments */
    .workshop-hero {
        padding: 2rem 0;
    }
    
    .workshop-hero-title {
        font-size: 1.8rem;
    }
    
    .workshop-about,
    .workshop-benefits {
        padding: 2rem 0;
    }
    
    .workshop-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .workshop-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.6rem !important;
    }
    
    .questionnaire-container {
        margin: 0.5rem 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-nav-overlay,
    .mobile-nav-sidebar,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black;
        background: white !important;
        color: black !important;
    }
}

/* Group Process Page Styles */
.hero-section {
    background: linear-gradient(135deg, #0abab5 0%, #0099cc 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section .hero-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
}

.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    color: #0abab5;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Extra small workshop adjustments */
.workshop-hero {
    padding: 2rem 0;
}

.workshop-hero-title {
    font-size: 1.8rem;
}

.workshop-about,
.workshop-benefits {
    padding: 2rem 0;
}

.workshop-content {
    flex-direction: column;
    gap: 2rem;
}

.workshop-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.highlight-item {
    padding: 1rem;
}

/* Group process page mobile adjustments */
.hero-section {
    padding: 3rem 0;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.section {
    padding: 2rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Extra small group process adjustments */
.hero-section {
    padding: 2rem 0;
}

.hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.section {
    padding: 1.5rem 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Buttons Container Styles */
.buttons-container {
    text-align: center;
    margin-top: 20px;
}

.buttons-container .btn {
    display: inline-block;
    margin: 10px;
}

@media (max-width: 768px) {
    .buttons-container .btn {
        display: block;
        width: 100%;
        margin: 10px auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Enhanced Form Feedback Styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-control.error {
    border-color: #e53e3e;
    background-color: #fff5f5;
}

.form-control.success {
    border-color: #48bb78;
    background-color: #f0fff4;
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background: #f0fff4;
    border: 1px solid #48bb78;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State for Buttons */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

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

/* SVG Icons */
.icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    color: #6b7c85;
    margin-bottom: 12px;
}

.icon--small {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
}

.icon--gold {
    color: #D4AF37;
}

/* אייקונים קטנים יותר בכרטיסים */
.feature-card .icon,
.benefit-card .icon,
.structure-item .icon {
    width: 20px;
    height: 20px;
    margin-bottom: 8px;
    color: #7a8a93;
}

/* יישור מרכזי לכרטיסים */
.feature-card,
.benefit-card,
.structure-item {
    text-align: center;
}

.feature-card h3,
.benefit-card h3,
.structure-item h3 {
    margin-top: 6px;
}

/* יישור אייקונים בסטים */
.step .icon,
.step .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* היררכיה ויזואלית - כותרות חזקות יותר */
.feature-card h3,
.benefit-card h3,
.structure-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2d3d;
}

.feature-card p,
.benefit-card p,
.structure-item p {
    font-size: 0.95rem;
    color: #4a5d6b;
}