/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container classes */
.container-home {
    max-width: 72rem; /* max-w-6xl */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-secondary {
    max-width: 64rem; /* max-w-5xl */
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-top: 80px; /* Add top margin to avoid sticky navbar overlap */
}

/* Sticky navbar - Enhanced with better shadows and backdrop */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.navbar-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.brand:hover {
    color: #3b82f6;
}

.brand img {
    height: 2rem;
    margin-right: 0.75rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1001;
}

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

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

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

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

.nav-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.nav-links a:hover {
    color: #111827;
    background-color: rgba(59, 130, 246, 0.05);
}

.nav-links a.active {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 2rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 0.25rem;
}

.language-toggle a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.language-toggle a:hover {
    color: #111827;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.language-toggle a.active {
    color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2);
    border: none;
    cursor: pointer;
    min-width: 160px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

/* Hero Section - Comprehensive styling */
.hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
}

.feature-icon {
    font-size: 1.25rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero visual content container */

/* Hero visual content styles */

/* Main content sections - Enhanced spacing and typography */
main {
    min-height: calc(100vh - 140px);
    padding-top: 0; /* No padding for desktop - hero starts directly */
}

section {
    padding: 5rem 0;
}

/* Ensure content doesn't get hidden behind sticky navbar */
@media (max-width: 768px) {
    main {
        padding-top: 0; /* Remove padding for mobile - content starts directly */
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding-top: 2rem;
        margin-top: 0;
    }
    
    /* Fix anchor link scroll positioning for mobile */
    html {
        scroll-padding-top: 160px; /* Optimized for mobile */
    }
}

.section-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.375rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Cards - Enhanced with better shadows, borders, and hover effects */
.card {
    background-color: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.125rem;
    line-height: 1.7;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
}

/* Cluster Icons */
.cluster-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cluster-icon.health {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.cluster-icon.digital {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.cluster-icon.food {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.cluster-icon.roles {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.cluster-icon.projects {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.cluster-icon.compliance {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.cluster-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Service Icons */
.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.service-icon.mobile {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.web {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.consulting {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon.ai {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.additional-services {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.additional-services p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

/* Process steps - Enhanced with better visual hierarchy */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.step:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Contact section - Enhanced layout */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-radius: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.contact-info p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-info p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.social-links {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.social-links h4 {
    margin-bottom: 1.5rem;
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
    background-color: #ffffff;
}

.social-icons a:hover {
    color: #3b82f6;
    border-color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Contact Section */
.whatsapp-contact-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.whatsapp-contact-section h4 {
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
}

.whatsapp-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    min-width: 160px;
    text-align: center;
}

.whatsapp-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.whatsapp-contact-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

/* Company info specific styles - Enhanced */
.company-info p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Founder Information Styles */
.founder-info {
    line-height: 1.7;
}

.founder-profile {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.founder-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-photo:empty::after {
    content: '👨‍💼';
    font-size: 3rem;
    color: #94a3b8;
}

.founder-details {
    flex: 1;
}

.founder-details > p:first-child {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.founder-details > p:nth-child(2) {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-projects {
    margin-bottom: 1.5rem;
}

.founder-projects h4 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.project-category {
    margin-bottom: 1.5rem;
}

.project-category h5 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.project-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-category li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #4b5563;
}

.project-category li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.project-category li strong {
    color: #1e293b;
    font-weight: 600;
}

.founder-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.founder-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.founder-social a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.social-icon {
    font-size: 1.25rem;
}

.bank-info {
    margin-top: 1.5rem;
}

.bank-account {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.bank-account:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bank-account h4 {
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1.125rem;
    font-weight: 600;
}

.iban-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.iban {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.copy-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

/* Notice section - Enhanced with better styling */
.notice {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.notice p {
    margin: 0;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f8fafc;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.footer-section h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
    border-radius: 1px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 0.5rem;
    color: #60a5fa;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
    transform: translateX(0.25rem);
}

.footer-section ul li a:hover::before {
    transform: translateX(0.25rem);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom p a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-bottom p a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Info in Footer */
.footer-contact-info {
    margin-top: 1rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info .contact-icon {
    color: #60a5fa;
    font-size: 1.1rem;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
}

/* Legacy footer styles for backward compatibility */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f8fafc;
    padding: 2rem 0 1rem 0;
    margin-top: 2rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

.copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1rem;
}

/* Responsive design - Enhanced breakpoints */

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .container-home,
    .container-secondary {
        padding: 0 2rem;
    }
    
    .container-secondary {
        margin-top: 80px; /* Consistent margin for tablet */
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fix anchor link scroll positioning for tablet */
    html {
        scroll-padding-top: 120px; /* Optimized for tablet */
    }
}
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.25rem 0;
        background-color: rgba(255, 255, 255, 0.99);
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide nav-links by default on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1rem 2rem 1rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0;
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .container-secondary {
        margin-top: 100px; /* Optimized margin for mobile */
    }
    
    .navbar-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    /* Mobile dropdown container improvements */
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item > a {
        width: 100%;
        display: block;
        padding: 1rem 1.5rem;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        border-bottom: none;
    }
    
    .nav-item > a::after {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        color: #6b7280;
    }
    
    .nav-item.mobile-open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Mobile dropdown menu improvements */
    .nav-item .dropdown-menu {
        background: #f8fafc;
        margin: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .nav-item .dropdown-menu a {
        padding: 0.75rem 2.5rem;
        font-size: 0.95rem;
        color: #6b7280;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .nav-item .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-item .dropdown-menu a:hover {
        background: #f1f5f9;
        color: #0284c7;
        padding-left: 3rem;
    }
    
    .nav-item .dropdown-menu a.active {
        background: #0284c7;
        color: white;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .feature {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    /* Mobile hero visual adjustments */
    
    /* Hero stats and highlights mobile styles */
    
    /* Sections */
    .section-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.75rem;
    }
    
    /* Services */
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    .cluster-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    /* Founder Section */
    .founder-profile {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .founder-details > p:first-child {
        font-size: 1.25rem;
    }
    
    .founder-details > p:nth-child(2) {
        font-size: 1rem;
    }
    
    .founder-projects h4 {
        font-size: 1.125rem;
    }
    
    .project-category h5 {
        font-size: 1rem;
    }
    
    .project-category li {
        font-size: 0.875rem;
    }
    
    .founder-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .founder-social a {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-icons a {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .whatsapp-contact-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .whatsapp-contact-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .copyright {
        font-size: 0.875rem;
    }
}

@media (max-width: 390px) {
    /* Containers */
    .container-home,
    .container-secondary {
        padding: 0 0.75rem;
    }
    
    .container-secondary {
        margin-top: 120px; /* Reduced margin for small mobile */
    }
    
    /* Navigation */
    .navbar {
        padding: 0.5rem 0; /* Increased padding for better visibility */
    }
    
    .navbar-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    /* Small mobile hamburger menu adjustments */
    .nav-links {
        width: 250px;
        padding: 4rem 1.5rem 2rem 1.5rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    /* Fix anchor link scroll positioning for small mobile */
    html {
        scroll-padding-top: 400px; /* Reduced value for small mobile scroll */
    }
    
    main {
        padding-top: 0; /* Remove padding for small mobile - content starts directly */
    }
    
    section {
        padding-top: 4rem; /* High padding for small mobile sections */
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .cta-button {
        max-width: 250px;
        font-size: 0.8rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Mobile hero image adjustments */
    
    /* Small mobile hero content adjustments */
    
    /* Mobile hero content adjustments */
    
    /* Sections */
    .section-title {
        font-size: 2rem;
        margin-top: 3rem; /* High margin for small mobile section titles */
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    /* Services */
    .service-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.125rem;
    }
    
    .cluster-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    /* Process Steps */
    .step {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Founder Section */
    .founder-photo {
        width: 80px;
        height: 80px;
    }
    
    .founder-details > p:first-child {
        font-size: 1.125rem;
    }
    
    .founder-details > p:nth-child(2) {
        font-size: 0.9rem;
    }
    
    .founder-projects h4 {
        font-size: 1rem;
    }
    
    .project-category h5 {
        font-size: 0.9rem;
    }
    
    .project-category li {
        font-size: 0.8rem;
    }
    
    .founder-social a {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Contact */
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Footer */
    .footer-container {
        padding: 1.25rem 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices - Hero content adjustments */
@media (max-width: 360px) {
    /* Small mobile hero content improvements */
    .hero-visual {
        margin-top: 0;
    }
}

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Enhanced focus states for accessibility */
.nav-links a:focus,
.cta-button:focus,
.copy-btn:focus,
.social-icons a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Optimized for desktop */
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-links a,
    .cta-button,
    .social-icons a,
    .founder-social a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .hero-section {
        padding: 2rem 0;
        margin-top: 0; /* Remove margin for mobile since main has padding-top */
    }
    
    section {
        padding: 3rem 0;
    }
    
    /* Improve text readability */
    .hero-subtitle,
    .section-subtitle {
        max-width: 100%;
    }
    
    /* Better card spacing */
    .card-grid {
        margin-top: 2rem;
    }
    
    /* Mobile hero content improvements */
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-visual {
        margin-top: 0;
    }
    
    /* Fix anchor link scroll positioning for landscape */
    html {
        scroll-padding-top: 100px; /* Optimized for landscape */
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

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

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

.whatsapp-button:active {
    transform: translateY(0) scale(0.95);
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 390px) {
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
} 

/* Workshop Page Specific Styles */
.workshop-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.highlight-card .card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.workshop-overview {
    margin-top: 2rem;
}

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

.overview-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.overview-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.overview-item p {
    color: #374151;
    line-height: 1.6;
}

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

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.discounted {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price-total {
    font-size: 1.25rem;
    color: #059669;
    font-weight: 600;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.discount-item {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.discount-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.discount-item h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.discount-item p {
    color: #78350f;
    line-height: 1.6;
}

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

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.goal-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.goal-item p {
    color: #0c4a6e;
    line-height: 1.6;
    margin: 0;
}

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

.audience-card {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.audience-card h3 {
    color: #166534;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.audience-card p {
    color: #15803d;
    line-height: 1.6;
}

.workshop-description {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.workshop-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #374151;
}

.workshop-description p:last-child {
    margin-bottom: 0;
}

.program-day {
    margin-bottom: 3rem;
}

.day-title {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    border: 1px solid #93c5fd;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.time {
    font-weight: 700;
    color: #1e40af;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
    background: #eff6ff;
    border-radius: 8px;
    border: 1px solid #dbeafe;
    align-self: start;
}

.activity h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.activity p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.activity ul {
    color: #374151;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.activity li {
    margin-bottom: 0.5rem;
}

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

.material-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fefce8;
    border: 1px solid #eab308;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.2);
}

.material-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.material-item p {
    color: #92400e;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

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

.registration-card {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.registration-card h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.registration-card p {
    color: #0c4a6e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Mobile responsive adjustments for workshop page */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .discount-info {
        grid-template-columns: 1fr;
    }
    
    .goals-list {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .materials-list {
        grid-template-columns: 1fr;
    }
    
    .registration-info {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .time {
        text-align: left;
        justify-self: start;
    }
    
    .workshop-highlights {
        gap: 0.5rem;
    }
    
    .highlight-card {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .highlight-card .card-icon {
        font-size: 1.5rem;
    }
} 

/* Main Workshops Page Styles */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.workshop-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.workshop-card.featured {
    border-color: #3b82f6;
    border-width: 2px;
}

.workshop-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.instructor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.workshop-content {
    padding: 2rem;
}

.workshop-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.workshop-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.workshop-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.detail-icon {
    font-size: 1.25rem;
}

.workshop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.workshop-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.workshop-actions .cta-button {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.cta-button.disabled {
    background: #9ca3af;
    color: #6b7280;
    cursor: not-allowed;
    opacity: 0.6;
}

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

.benefit-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

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

.benefit-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.contact-card {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.contact-card h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: #0c4a6e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #0369a1;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.newsletter-button {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

.newsletter-button:active {
    transform: translateY(0);
}

/* Mobile responsive adjustments for main workshops page */
@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-card {
        margin: 0 1rem;
    }
    
    .workshop-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshop-actions {
        flex-direction: column;
    }
    
    .workshop-actions .cta-button {
        flex: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
} 

/* Hero content spacing */

/* Hero Image Styles */
.hero-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 400px;
}

.hero-illustration {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-height: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: cover;
    display: block !important;
}

.hero-illustration:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive hero image */
@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        min-height: 300px;
    }
    
    .hero-illustration {
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        min-height: 300px;
    }
    
    .hero-illustration:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Debug styles to ensure image visibility */
.hero-image img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Service Card Styles */
.service-card {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #0284c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #0369a1;
    transform: translateX(4px);
}

.service-icon.education {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #0284c7;
    padding-left: 25px;
}

.dropdown-menu a.active {
    background: #0284c7;
    color: white;
}

.dropdown-menu a.active:hover {
    background: #0369a1;
}

/* Dropdown arrow indicator */
.nav-item > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.nav-item:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Dropdown Toggle */
.nav-item.mobile-open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.3s ease;
}

.nav-item.mobile-open > a::after {
    transform: rotate(180deg);
}

/* Default mobile dropdown state */
.nav-item .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: all 0.3s ease;
}

/* Mobile specific dropdown states */
@media (max-width: 768px) {
    .nav-item .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        overflow: visible;
        transition: all 0.3s ease;
    }
    
    .nav-item.mobile-open .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        overflow: visible !important;
        margin-top: 0;
        padding-top: 0.5rem;
        background: #f8fafc;
    }
    
    /* Force dropdown visibility */
    .nav-item.mobile-open .dropdown-menu a {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Additional mobile dropdown styles */
    .nav-item.mobile-open .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        min-width: auto !important;
    }
    
    /* Ensure all dropdowns are visible on mobile by default */
    @media (max-width: 768px) {
        .nav-item .dropdown-menu,
        .dropdown-menu {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            max-height: 500px !important;
            overflow: visible !important;
        }
        
        .nav-item .dropdown-menu a,
        .dropdown-menu a {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        min-width: auto;
        margin: 0;
        padding: 0;
        max-height: 500px;
        overflow: visible;
        transition: all 0.3s ease;
        display: block;
    }
    
    /* Override for mobile open state */
    .nav-item.mobile-open .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        overflow: visible !important;
        background: #f8fafc;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2.5rem;
        font-size: 0.95rem;
        color: #6b7280;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        margin: 0;
        display: block !important;
        width: 100%;
        text-align: left;
        background: transparent;
        transition: all 0.2s ease;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background: #f1f5f9;
        color: #0284c7;
        padding-left: 3rem;
    }
    
    .dropdown-menu a.active {
        background: #0284c7;
        color: white;
    }
    
    /* Mobile navigation container adjustments */
    .nav-links {
        padding: 0;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Mobile dropdown container */
    .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-item > a {
        width: 100%;
        display: block;
        padding: 1rem 1.5rem;
        margin: 0;
        border-bottom: none;
        box-sizing: border-box;
        position: relative;
        background: #ffffff;
    }
    
    .nav-item > a::after {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        color: #6b7280;
    }
    
    /* Language toggle mobile adjustments */
    .language-toggle {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        text-align: center;
        background: #f8fafc;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .language-toggle a {
        margin: 0 0.5rem;
        padding: 8px 16px;
        border-radius: 4px;
        background: #ffffff;
        color: #374151;
        text-decoration: none;
        font-size: 0.9rem;
        border: 1px solid #e5e7eb;
    }
    
    .language-toggle a.active {
        background: #0284c7;
        color: white;
        border-color: #0284c7;
    }
}

/* WhatsApp Contact Section Styles */
.whatsapp-contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.whatsapp-info {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.whatsapp-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.whatsapp-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-cta-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta-button:active {
    transform: translateY(0);
}

.whatsapp-cta-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsive adjustments for WhatsApp contact section */
@media (max-width: 768px) {
    .whatsapp-contact-container {
        padding: 2rem 1rem;
    }
    
    .whatsapp-info {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .whatsapp-info h3 {
        font-size: 1.25rem;
    }
    
    .whatsapp-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    width: 300%; /* 3 slides için 300% genişlik */
}

.slider-track.slide-0 { transform: translateX(0); }
.slider-track.slide-1 { transform: translateX(-33.333%); }
.slider-track.slide-2 { transform: translateX(-66.666%); }

.slide {
    min-width: 33.333%; /* Her slide 1/3 genişlik */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Tüm slide'lar görünür */
    transition: all 0.5s ease-in-out;
    flex-shrink: 0; /* Slide'ların küçülmesini engelle */
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    color: #374151;
    transition: color 0.3s ease;
}

.slider-nav:hover svg {
    color: #1f2937;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}