/* FinEdu Main Styles */
/* Color Scheme Variables */
:root {
    --primary-color: #2563EB;
    --secondary-color: #111827;
    --accent-color: #F59E0B;
    --background-color: #F9FAFB;
    --surface-color: #FFFFFF;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

/* Remove list bullets globally */
ul {
    list-style: none;
}

li {
    list-style: none;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Interactive button styles */
.btn, .cta-button, .service-link, .path-button, .tool-link {
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover, .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Focus states for accessibility */
.btn:focus, .cta-button:focus, .service-link:focus, .path-button:focus, .tool-link:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

.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: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--text-secondary);
    color: white;
    border-color: var(--text-secondary);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1f2937 100%);
    color: white;
    padding: 20px;
    z-index: 1000;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.cookie-content p{
    color: #FFFFFF;
}
.cookie-content a {
  color: var(--primary-color);
    text-decoration:none;
    transition: color 0.3s ease;
}
.cookie-icon {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    margin: 0 20px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    color: #ffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #fbbf24;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-decline {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #6b7280;
}

.btn-decline:hover {
    background: #374151;
    color: white;
    border-color: #9ca3af;
}

.btn-settings {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-settings:hover {
    background: var(--accent-color);
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

.modal-body {
    padding: 20px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.cookie-category:hover {
    border-color: var(--primary-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: var(--accent-color);
    cursor: not-allowed;
}

.cookie-category p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-save {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-accept-all {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
}

.notification.info {
    border-left-color: var(--primary-color);
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.notification-content span {
    color: var(--text-primary);
    font-weight: 500;
}

.notification-content button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-content button:hover {
    background: #f3f4f6;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

/* Header */
.main-header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #ffd700;
}

.nav-logo a:hover .logo-icon {
    transform: scale(1.1);
}

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

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

.nav-menu a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu a:active,
.nav-menu a.active {
    color: var(--accent-color);
    background-color: rgba(255, 215, 0, 0.2);
    transform: scale(0.95);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-color) 0%, #E0E7FF 100%);
}

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

.hero-content h1 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 20px;
}

.hero-image svg,
.hero-chart {
    width: 100%;
    height: auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--surface-color);
}

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

.feature-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Courses Preview */
.courses-preview {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.course-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.course-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.course-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.course-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design for Learning Path Section */
@media (max-width: 1024px) {
    .learning-path-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .path-step {
        gap: 30px;
        padding: 30px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .learning-path-section {
        padding: 80px 0;
    }
    
    .learning-path-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .learning-path-section .section-header p {
        font-size: 1.1rem;
    }
    
    .learning-path::before {
        display: none;
    }
    
    .path-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .path-step:hover {
        transform: translateY(-5px);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .step-content ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .step-content li {
        padding: 10px 15px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .learning-path-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .learning-path-section .section-header p {
        font-size: 1rem;
    }
    
    .path-step {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

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

.footer-main {
    max-width: 350px;
}

.footer-section h3,
.footer-section h4,
.footer-section h5 {
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #D1D5DB;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.contact-info {
   
}

.contact-info p {
    margin-bottom: 10px;
    color: #D1D5DB;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--accent-color);
    width: 16px;
}

/* Social Media Styles */
.social-media {
    margin-top: 25px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Newsletter Styles */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-input input::placeholder {
    color: #D1D5DB;
}

.newsletter-input button {
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.newsletter-section .checkbox-group {
    margin-bottom: 0;
}

.newsletter-section .checkbox-group label {
    font-size: 12px;
    color: #D1D5DB;
}

.newsletter-section .checkbox-group a {
    color: var(--accent-color);
}

/* Newsletter Success and Error Messages */
.newsletter-section .success-message,
.newsletter-section .error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    animation: slideIn 0.3s ease-out;
}

.newsletter-section .success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #10B981;
}

.newsletter-section .error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

.newsletter-section .success-icon,
.newsletter-section .error-icon {
    flex-shrink: 0;
}

.newsletter-section .success-text h4,
.newsletter-section .error-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.newsletter-section .success-text p,
.newsletter-section .error-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

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

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.services-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  
}

.service-card p {
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0.9;
}

.service-link {
    color: #F59E0B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FBBF24;
    text-decoration: underline;
}

/* Learning Paths Section */
.learning-paths-section {
    padding: 80px 0;
    background: #f8fafc;
}

.learning-paths-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.learning-paths-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.path-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.path-card.beginner {
    border-color: #22C55E;
}

.path-card.intermediate {
    border-color: #3B82F6;
}

.path-card.advanced {
    border-color: #8B5CF6;
}

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

.path-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.path-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #64748b;
    text-align: center;
}

.path-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.path-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.path-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

.path-button {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #3B82F6, #1e40af);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.path-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: white;
}

.tools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.tools-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

.tool-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.tool-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #64748b;
}

.tool-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.success-stories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1e293b;
}

.success-stories-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #64748b;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    margin-bottom: 20px;
 
    display: flex;
    justify-content: center;
}

.story-icon img {
    border-radius: 50%;
}

.story-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.story-profession {
    color: #64748b;
    font-style: italic;
    margin-bottom: 16px;
}

.story-text {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
}

.story-achievement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f9ff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #3B82F6;
}

.achievement-label {
    font-weight: 600;
    color: #1e293b;
}

.achievement-value {
    font-weight: bold;
    color: #3B82F6;
    font-size: 1.1rem;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.statistics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #F59E0B;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Risk Warning Section */
.footer-risk-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.footer-risk-warning h4 {
    color: #FEE2E2;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-risk-warning i {
    color: #EF4444;
}

.risk-warning {
    font-size: 14px;
    line-height: 1.6;
    color: #FEE2E2;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}
.footer-bottom p{
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #9CA3AF;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-main {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 0;
    }
    
    .newsletter-input {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
         justify-content: center;
     }
 }

/* Contact Map Section Styles */
.contact-map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
   
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.contact-details p {
    margin: 0 0 8px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-hours {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.contact-card .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
}

/* Map Container Styles */
.map-container {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}

.interactive-map {
    position: relative;
    height: 400px;
    width: 100%;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.map-info h4 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info h4 i {
    color: var(--primary-color);
}

.map-info p {
    margin: 0 0 15px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
}

/* Transport Info Styles */
.transport-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transport-info h4 {
    margin: 0 0 20px 0;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-info h4 i {
    color: var(--primary-color);
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.transport-option:hover {
    background: #e2e8f0;
}

.transport-option i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.transport-option span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

/* Quick Contact Form Styles */
.contact-map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.contact-map-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="contact-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23475569" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.contact-map-section .container {
    position: relative;
    z-index: 1;
}

.contact-map-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-map-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.contact-map-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.quick-contact {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 24px;
    z-index: -1;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.quick-contact-header::before {
    content: '✉️';
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.quick-contact-header h3 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-contact-header p {
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quick-contact-form {
    max-width: 100%;
    margin: 0 auto;
}

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

.quick-contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.quick-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.quick-contact-form label::after {
    content: '*';
    color: #ef4444;
    margin-left: 4px;
    font-weight: 700;
}

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.6;
}

.form-group::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.form-group:focus-within::before {
    opacity: 1;
}

.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6b7280;
    transition: color 0.3s ease;
    order: 2;
}

.checkbox-label:hover {
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #3b82f6;
    cursor: pointer;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

 .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    order: 1;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
} 

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-primary .loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.btn-primary.loading .loading-spinner {
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Section Responsive Styles */
@media (max-width: 1024px) {
    .contact-map-section {
        padding: 80px 0;
    }
    
    .contact-map-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .quick-contact {
        padding: 40px;
        margin: 0 20px;
    }
    
    .quick-contact-header h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 60px 0;
    }
    
    .contact-map-section .section-header h2 {
        font-size: 2rem;
    }
    
    .quick-contact {
        padding: 30px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .quick-contact-header h3 {
        font-size: 1.6rem;
    }
    
    .quick-contact-header p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .form-actions {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-map-section {
        padding: 40px 0;
    }
    
    .contact-map-section .section-header h2 {
        font-size: 1.7rem;
    }
    
    .quick-contact {
        padding: 25px;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .quick-contact-header::before {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .quick-contact-header h3 {
        font-size: 1.4rem;
    }
    
    .quick-contact-header p {
        font-size: 0.95rem;
    }
    
    .quick-contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .form-row {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .quick-contact-form input,
    .quick-contact-form select,
    .quick-contact-form textarea {
        padding: 14px 18px;
        border-radius: 12px;
    }
    
    .quick-contact-form textarea {
        min-height: 120px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .btn-primary {
        padding: 14px 25px;
        font-size: 0.95rem;
        min-width: auto;
    }
}

/* Success Message Styles */
.success-message {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: var(--text-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out;
}

.success-content {
    max-width: 400px;
    margin: 0 auto;
}

.success-content svg {
    margin-bottom: 20px;
    animation: checkmark 0.8s ease-out 0.3s both;
}

.success-content h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Enhanced Checkbox Styles */
.newsletter-form .checkbox-group {
    margin-bottom: 25px;
}

.newsletter-form .checkbox-label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.newsletter-form .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.newsletter-form .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-form .checkbox-label:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .checkbox-label input:checked ~ .checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.newsletter-form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.newsletter-form .checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.newsletter-form .checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
 
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .map-overlay {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .quick-contact {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-header h3 {
        font-size: 24px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    padding: 20px 0;
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-icon {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}

.cookie-decline {
    background: #6B7280;
    color: white;
}

.cookie-decline:hover {
    background: #4B5563;
}

.cookie-settings {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.cookie-settings:hover {
    background: var(--primary);
    color: white;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--surface);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #E5E7EB;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #F3F4F6;
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 20px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F3F4F6;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Cookie Switch Styles */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: var(--primary);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Cookie Popup */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--surface-color);
}

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

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Responsive form layout */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.error-message,
.field-error {
    color: #EF4444;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.success-message {
    background: #10B981;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Button Loading State */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .features-section,
    .courses-preview,
    .cta-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .course-card {
        padding: 1.5rem;
    }
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

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

.benefit-item {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
}

.statistics-section .section-header h2,
.statistics-section .section-header p {
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background-color: var(--surface-color);
}

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

.story-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.story-quote {
    margin-bottom: 2rem;
}

.story-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

.story-quote p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-family: serif;
}

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

.author-avatar {
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Course Icons */
.course-title-with-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.course-icon:hover {
    transform: scale(1.1);
}

.course-title-with-icon h2 {
    margin: 0;
    color: var(--text-primary);
}

/* Team Member Icons */
.member-photo {
    position: relative;
}

.member-role-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: white;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-role-icon:hover {
    transform: scale(1.1);
}

/* Testimonial Icons */
.testimonial-card {
    position: relative;
}

.testimonial-success-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.testimonial-success-icon:hover {
    transform: scale(1.1);
}

/* Course Card Icons */
.course-card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.course-card-icon:hover {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.gallery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.gallery-item:nth-child(even) .gallery-image {
    order: 2;
}

.gallery-item:nth-child(even) .gallery-content {
    order: 1;
}

.gallery-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gallery-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.gallery-content h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gallery-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-content ul li {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.gallery-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 768px) {
    .gallery-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .gallery-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(even) .gallery-image,
    .gallery-item:nth-child(even) .gallery-content {
        order: unset;
    }
    
    .gallery-content h3 {
        font-size: 20px;
    }
    
    .gallery-content p {
         font-size: 14px;
     }
 }

/* Legal Pages Styles */
.legal-content {
    padding: 60px 0;
    background: #f8fafc;
    min-height: 70vh;
}

.legal-document {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.document-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.document-info p {
    margin: 5px 0;
    color: var(--text-primary);
    font-weight: 500;
}

.legal-document h2 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-document h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.legal-document h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px 0;
}

.legal-document p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-document ul,
.legal-document ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-document li {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-document strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.cookie-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-secondary);
    font-size: 14px;
}

.cookie-table tr:hover {
    background: #f8fafc;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #f59e0b;
}

.highlight-box p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.contact-info-box {
    background: linear-gradient(135deg, #dbeafe 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    text-align: center;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: white;
    margin: 5px 0;
}

.contact-info-box a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

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

/* Thank You Page Styles */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-section h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

.quick-actions {
    margin-bottom: 50px;
}

.quick-actions h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary,
.action-buttons .btn-outline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-support {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-support h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-support p {
    color: #64748b;
    margin-bottom: 25px;
}

.support-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #2563eb;
    transition: all 0.3s ease;
}

.support-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Remove bullet points from all ul li elements */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Remove checkmarks from header and footer */
.main-header ul li:before,
.main-footer ul li:before,
header ul li:before,
footer ul li:before {
    content: "" !important;
    padding-left: 0;
}

.main-header ul li,
.main-footer ul li,
header ul li,
footer ul li {
    padding-left: 0;
}

/* Page Header Styles */
.page-header {
    padding: 20px 0 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Courses Section Styling */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-detail {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.course-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-header {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.course-title-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.course-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.course-header h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.course-meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.course-content {
    padding: 30px;
}

.course-description h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.course-description p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-description h4 {
    color: #1e293b;
    margin: 25px 0 15px 0;
    font-size: 1.1rem;
}

.course-description ul {
    margin-bottom: 25px;
}

.course-modules {
    margin-top: 25px;
}

.module {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.module:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.module h5 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1rem;
}

.module p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.course-signup {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.signup-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.signup-card h3 {
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

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

.course-form label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
}

.course-form input,
.course-form select,
.course-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.course-form input:focus,
.course-form select:focus,
.course-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.course-form .btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.course-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-header {
        padding: 20px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-title-with-icon {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .course-meta {
        justify-content: center;
    }
}

/* Course Page Enhancements */
.course-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.course-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
}

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

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.learning-path {
    padding: 80px 0;
    background: white;
}

.learning-path h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.learning-path > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
}

.path-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.path-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.path-step {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.path-step-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.path-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.path-step-card:hover::before {
    opacity: 1;
}

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

.path-step-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

.step-icon {
    margin: 25px 0 20px 0;
    position: relative;
    z-index: 1;
}

.path-step h3,
.path-step-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.path-step p,
.path-step-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.step-link {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-link:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Responsive Styles for Learning Path Grid */
@media (max-width: 768px) {
    .path-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .path-step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        top: -12px;
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .path-step-card h3 {
        font-size: 1.2rem;
    }
    
    .step-link {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .learning-path {
        padding: 60px 0;
    }
    
    .learning-path h2 {
        font-size: 2rem;
    }
    
    .learning-path > .container > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .path-steps-grid {
        gap: 15px;
    }
    
    .path-step-card {
        padding: 25px 15px;
        border-radius: 16px;
    }
}

.course-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.course-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.stat-icon {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.course-categories {
    padding: 80px 0;
    background: #f8fafc;
}

.course-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #f59e0b, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-level {
    display: inline-block;
    padding: 6px 12px;
    background: #e2e8f0;
    color: #475569;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-faq {
    padding: 80px 0;
    background: white;
}

.course-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: #64748b;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .thank-you-section h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-contacts {
        flex-direction: column;
    }
    
    .course-benefits h2,
    .learning-path h2,
    .course-stats h2,
    .course-categories h2,
    .course-faq h2 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .path-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #2563eb;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cookie.accept {
    background: #10b981;
    color: white;
}

.btn-cookie.accept:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-cookie.decline {
    background: #ef4444;
    color: white;
}

.btn-cookie.decline:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-cookie.settings {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.btn-cookie.settings:hover {
    background: #475569;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
        justify-content: center;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-actions {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}

@media (max-width: 768px) {
     .legal-document {
        padding: 25px;
        margin: 0 15px;
    }
    
    .legal-document h2 {
        font-size: 20px;
    }
    
    .legal-document h3 {
        font-size: 18px;
    }
    
    .legal-document p,
    .legal-document li {
        font-size: 14px;
    }
    
    .cookie-table {
        font-size: 12px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
    
    .thank-you-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .thank-you-content h1 {
        font-size: 24px;
    }
    
    .thank-you-content p {
        font-size: 16px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Materials Page Specific Styles */
.materials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

/* Remove list dots globally */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
}

ul li, ol li {
    list-style: none !important;
    padding-left: 0 !important;
}

ul li:before, ol li:before {
    content: "" !important;
}

/* Section Headers with Icons */
.section-header-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.section-header-with-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.section-header-with-icon:hover .section-icon {
    transform: scale(1.1) rotate(5deg);
}

.section-header-with-icon h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Materials Category Styling */
.materials-category {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.materials-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Grid Layouts */
.materials-grid, .articles-grid, .tools-grid, .learning-paths-grid, .workshops-grid, .news-grid, .community-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.materials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.learning-paths-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.workshops-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.community-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Material Cards */
.material-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.material-card:hover::before {
    transform: scaleX(1);
}

.material-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.material-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.material-card:hover .material-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.material-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.material-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.material-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.material-meta span {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Article Cards */
.article-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.article-card:hover .article-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-meta span {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Tool Cards */
.tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1D4ED8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.tool-icon {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Learning Path Cards */
.learning-path-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.learning-path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, #D97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.learning-path-card:hover::before {
    transform: scaleX(1);
}

.learning-path-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.path-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.progress-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-text {
    position: absolute;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.path-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.path-stats .stat {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    color: #D97706;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Workshop Cards */
.workshop-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdf2f8 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EC4899, #BE185D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.workshop-card:hover::before {
    transform: scaleX(1);
}

.workshop-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
}

.workshop-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #EC4899, #BE185D);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.workshop-icon {
    background: linear-gradient(135deg, #EC4899, #BE185D);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.workshop-card:hover .workshop-icon {
    transform: scale(1.1) rotate(-15deg);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
}

.workshop-details {
    margin: 20px 0;
}

.workshop-details .detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.workshop-details .label {
    font-weight: 600;
    color: var(--text-primary);
}

.workshop-details .value {
    color: var(--text-secondary);
}

/* News Cards */
.news-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: hidden;
}

.news-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card.featured::before {
    background: linear-gradient(90deg, #DC2626, #B91C1C);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
}

.news-card.featured:hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.news-icon {
    background: linear-gradient(135deg, #059669, #047857);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.news-card.featured .news-icon {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.news-card:hover .news-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
}

.news-card.featured:hover .news-icon {
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-meta span {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(4, 120, 87, 0.1));
    color: #047857;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.news-card.featured .news-meta span {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    color: #B91C1C;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Community Cards */
.community-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #7C3AED);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.community-card:hover::before {
    transform: scaleX(1);
}

.community-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.community-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.community-card:hover .community-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.community-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.community-stats .stat {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    color: #7C3AED;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Button Enhancements */
.btn-primary, .btn-secondary, .btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before, .btn-secondary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-outline:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-secondary:hover, .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section Enhancement */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.newsletter-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #E59400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.checkbox-group {
    text-align: center;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive Design for Materials Page */
@media (max-width: 1200px) {
    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .learning-paths-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .materials-container {
        padding: 0 15px;
    }
    
    .section-header-with-icon {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .section-header-with-icon h2 {
        font-size: 1.8rem;
    }
    
    .materials-category {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .materials-grid, .articles-grid, .tools-grid, .learning-paths-grid, .workshops-grid, .news-grid, .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .material-card, .article-card, .tool-card, .learning-path-card, .workshop-card, .news-card, .community-card {
        padding: 20px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header-with-icon h2 {
        font-size: 1.5rem;
    }
    
    .material-card h3, .article-card h3, .tool-card h3, .learning-path-card h3, .workshop-card h3, .news-card h3, .community-card h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
}

/* About Company Section Styles */
.about-company {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-company::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;
    z-index: 0;
}

.about-company .container {
    position: relative;
    z-index: 1;
}

/* Mission Block */
.mission-block {
    margin-bottom: 80px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.mission-content {
 
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #22C55E);
    border-radius: 24px 24px 0 0;
}

.mission-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.mission-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
}

.mission-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
}

.mission-text {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.mission-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.mission-vision {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Values Block */
.values-block {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.value-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid transparent;
    padding-top: 0;
}

.value-card:hover .value-description {
    opacity: 1;
    max-height: 100px;
    border-top-color: var(--border-color);
    padding-top: 20px;
}

.value-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Statistics Block */
.statistics-block {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

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

.stat-icon {
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.stat-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-company {
        padding: 60px 0;
    }
    
    .mission-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .mission-header h2 {
        font-size: 2.2rem;
    }
    
    .mission-intro {
        font-size: 1.1rem;
    }
    
    .values-header h3,
    .stats-header h3 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 0 20px;
    }
    
    .value-card,
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mission-header h2 {
        font-size: 1.8rem;
    }
    
    .mission-intro {
        font-size: 1rem;
    }
    
    .values-header h3,
    .stats-header h3 {
        font-size: 1.7rem;
    }
    
    .values-subtitle,
    .stats-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ===== TEAM SECTION STYLES ===== */

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.team-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;
    z-index: 1;
}

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

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    position: relative;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Team Member Card */
.team-member {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Member Photo Section */
.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

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

.member-role-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.member-role-icon:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Member Info Section */
.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.member-position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: left;
}

/* Credentials Section */
.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.member-credentials span {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-credentials span:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Expertise Tags */
.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.expertise-tag:hover::before {
    left: 100%;
}

.expertise-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Achievements Section */
.member-achievements {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.member-achievements p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: left;
}

.member-achievements strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .team-member {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .member-info h3 {
        font-size: 1.5rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.95rem;
    }
    
    .member-credentials {
        gap: 8px;
    }
    
    .member-credentials span {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .expertise-tag {
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .team-member {
        padding: 20px;
        margin: 0 10px;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-credentials {
        flex-direction: column;
        align-items: center;
    }
    
    .member-expertise {
        justify-content: center;
    }
    
    .member-achievements {
        padding: 15px;
    }
}

/* ===== ENHANCED TEAM SECTION STYLES ===== */

/* Team Header Enhancements */
.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Expert Card Enhancements */
.expert-card {
    position: relative;
    overflow: hidden;
}

.expert-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 0 0 0 60px;
    transition: all 0.3s ease;
}

.expert-card:hover::after {
    width: 80px;
    height: 80px;
    opacity: 0.15;
}

/* Photo Container Enhancements */
.member-photo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.member-photo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.expert-card:hover .member-photo-container::before {
    opacity: 0.3;
    width: 160px;
    height: 160px;
}

/* Member Info Block Structure */
.member-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Basic Info Block */
.member-basic-info {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.member-basic-info::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.expert-card:hover .member-basic-info::after {
    width: 80px;
}

.member-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.expert-card:hover .member-name {
    color: var(--primary-color);
}

/* Description Block */
.member-description-block {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.member-description-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.expert-card:hover .member-description-block::before {
    width: 8px;
}

/* Structured Info Blocks */
.member-credentials-block,
.member-expertise-block,
.member-achievements-block {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.member-credentials-block:hover,
.member-expertise-block:hover,
.member-achievements-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.block-title {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 15px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Credential Items */
.credential-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: inline-block;
}

.credential-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Achievements Block Special Styling */
.member-achievements-block {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #10b981;
}

.member-achievements-block:hover {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.member-achievements-block .block-title::before {
    background: #10b981;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .team-subtitle {
        font-size: 1.1rem;
        margin: 0.8rem auto 0;
    }
    
    .member-info {
        gap: 1.2rem;
    }
    
    .member-credentials-block,
    .member-expertise-block,
    .member-achievements-block {
        padding: 1rem;
    }
    
    .block-title {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .team-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .member-info {
        gap: 1rem;
    }
    
    .member-description-block {
        padding: 1rem;
    }
    
    .member-credentials-block,
    .member-expertise-block,
    .member-achievements-block {
        padding: 0.8rem;
    }
}

/* ===== JOIN TEAM SECTION STYLES ===== */

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.join-team-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;
    z-index: 1;
}

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

/* Join Team Header */
.join-team-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.join-team-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.join-team-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.join-team-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Mission Points Grid */
.mission-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Point Cards */
.mission-point-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mission-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

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

.mission-point-card:hover::before {
    height: 8px;
}

/* Mission Icons */
.mission-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-icon svg {
    transition: transform 0.3s ease;
}

.mission-point-card:hover .mission-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Mission Content */
.mission-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.mission-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Mission Benefits */
.mission-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-benefits li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.mission-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.mission-point-card:hover .mission-benefits li {
    color: var(--text-primary);
}

/* Call to Action Block */
.join-team-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.join-team-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

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

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.join-team-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.join-team-cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-team-section {
        padding: 60px 0;
    }
    
    .join-team-header h2 {
        font-size: 2rem;
    }
    
    .join-team-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .mission-point-card {
        padding: 1.5rem;
    }
    
    .mission-title {
        font-size: 1.3rem;
    }
    
    .join-team-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .join-team-header {
        margin-bottom: 3rem;
    }
    
    .join-team-header h2 {
        font-size: 1.8rem;
    }
    
    .join-team-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .mission-point-card {
        padding: 1.2rem;
    }
    
    .mission-title {
        font-size: 1.2rem;
    }
    
    .mission-description {
        font-size: 0.95rem;
    }
    
    .join-team-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===== MISSION POINTS STYLES ===== */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-content {
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.mission-point {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.mission-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-point:hover::before {
    height: 8px;
}

.mission-point:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}

.mission-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.mission-icon svg {
    transition: all 0.3s ease;
}

.mission-point:hover .mission-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
}

.mission-point:hover .mission-icon svg {
    stroke: var(--accent-color);
    transform: scale(1.1);
}

.mission-point h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mission-point p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .mission-point:nth-child(3) {
        grid-column: 1;
        max-width: none;
    }
    
    .mission-point {
        padding: 2rem 1.5rem;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .mission-point h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .mission-content h2 {
        font-size: 1.8rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .mission-point {
        padding: 1.5rem 1rem;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-point h3 {
        font-size: 1.2rem;
    }
    
    .mission-point p {
        font-size: 0.95rem;
    }
}

/* ===== ENHANCED CONTACT & THANK YOU PAGE STYLES ===== */

/* Remove list bullets globally */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    list-style: none;
    position: relative;
    padding-left: 0;
}

/* Enhanced Contact Page Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    z-index: 1;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {

    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.contact-item:hover .contact-icon::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
    z-index: 2;
    position: relative;
}

.contact-text {
    flex: 1;
    justify-content: center;
    align-items: center;
}

.contact-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.contact-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.contact-text a:hover::after {
    width: 100%;
}

.contact-text a:hover {
    color: #1d4ed8;
}

.contact-text small {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

/* Enhanced Form Styles */
.contact-form-section {
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.form-container {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: text;
}

.form-group select {
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #007bff;
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 11;
}

.checkbox-group label {
    cursor: pointer;
    pointer-events: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

/* Enhanced Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.map-fallback:hover {
    transform: scale(1.05);
}

/* Enhanced Thank You Page Styles */
.thank-you-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

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

.thank-you-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.thank-you-steps {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.social-sharing {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

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

.social-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.linkedin {
    background: #0077b5;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

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

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #007bff;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #007bff;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-content {
    padding: 25px;
    border-top: 1px solid #e9ecef;
    background: #fafbfc;
}

.faq-content p {
    margin: 0;
    line-height: 1.6;
    color: #4a5568;
    font-size: 1rem;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 1;
}

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

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Map Section Styles */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Force map visibility during all scroll states */
.map-container,
.map-container.fade-in,
.map-container.slide-up,
.map-container.visible,
.map-container:not(.visible) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure iframe inside map is always visible */
.map-container iframe,
.interactive-map iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.interactive-map {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: block !important;
    visibility: visible !important;
    background: #f8fafc;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 12px;
    display: block !important;
    visibility: visible !important;
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.fallback-content {
    text-align: center;
    padding: 2rem;
}

.location-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.location-info .address {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Location Details */
.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.detail-item svg {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.detail-item strong {
    color: #1e293b;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
  
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 15px;
    }
    
    .contact-text h3 {
        font-size: 1.2rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-card,
    .form-container,
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
    
    /* FAQ Responsive Styles */
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-accordion {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 20px 15px;
        font-size: 1rem;
    }
    
    .faq-question span {
        padding-right: 10px;
    }
    
    .faq-content {
        padding: 20px 15px;
    }
    
    .faq-content p {
        font-size: 0.9rem;
    }
}

/* Financial Tools Section */
.financial-tools-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.tool-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    text-align: center;
}

.tool-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Learning Path Section */
.learning-path-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.learning-path-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;
    z-index: 0;
}

.learning-path-section .container {
    position: relative;
    z-index: 1;
}

.learning-path-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.learning-path-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.learning-path-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.learning-path-section .section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.learning-path {
    margin-top: 60px;
    position: relative;
}

.learning-path::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6, #10b981, #f59e0b);
    border-radius: 2px;
    z-index: 0;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    border-radius: 20px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.path-step:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--step-color, #3B82F6);
    transform: translateX(15px) translateY(-5px);
}

.path-step:nth-child(1) {
    --step-color: #EF4444;
}

.path-step:nth-child(2) {
    --step-color: #F59E0B;
}

.path-step:nth-child(3) {
    --step-color: #10B981;
}

.path-step:nth-child(4) {
    --step-color: #8B5CF6;
}

.step-number {
    background: linear-gradient(135deg, var(--step-color, #3B82F6), var(--step-color-dark, #1d4ed8));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.path-step:nth-child(1) .step-number {
    --step-color-dark: #dc2626;
}

.path-step:nth-child(2) .step-number {
    --step-color-dark: #d97706;
}

.path-step:nth-child(3) .step-number {
    --step-color-dark: #059669;
}

.path-step:nth-child(4) .step-number {
    --step-color-dark: #7c3aed;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--step-color, #3B82F6), var(--step-color-dark, #1d4ed8));
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--step-color, #3B82F6);
    border-radius: 2px;
}

.step-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.step-content li {
    color: #64748b;
    position: relative;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--step-color, #3B82F6);
    transition: all 0.3s ease;
    font-weight: 500;
}

.step-content li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.step-content li:before {
    content: "✓";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--step-color, #3B82F6);
    font-weight: bold;
    font-weight: bold;
}

/* Expert Insights Section */
.expert-insights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.expert-insights-section .section-header h2,
.expert-insights-section .section-header p {
    color: white;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.insight-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.insight-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.insight-author {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Interactive Features Section */
.interactive-features-section {
    padding: 80px 0;
    background: white;
}

.features-showcase {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-showcase-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-showcase-item:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
    transform: scale(1.02);
}

.feature-showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-icon {
    flex-shrink: 0;
}

.showcase-content {
    flex: 1;
}

.showcase-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.showcase-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.showcase-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, #3B82F6, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.community-stat {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.community-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3B82F6;
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--accent-color);
    font-weight: 500;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* New Sections Responsive Design */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .path-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-showcase-item {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Enhanced Community Section Styles */
.community-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.community-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>') repeat;
    opacity: 0.3;
    z-index: 1;
}

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

/* Community Features Grid */
.community-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.community-feature-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.community-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #10B981, #F59E0B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.community-feature-card:hover::before {
    transform: scaleX(1);
}

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

.community-feature-card:nth-child(1):hover {
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.community-feature-card:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.community-feature-card:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

/* Feature Header */
.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 30px 0;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.community-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.community-feature-card:nth-child(1) .feature-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #1e40af 100%);
}

.community-feature-card:nth-child(2) .feature-badge {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.community-feature-card:nth-child(3) .feature-badge {
    background: linear-gradient(135deg, #F59E0B 0%, #d97706 100%);
}

/* Feature Content */
.feature-content {
    padding: 0 30px 20px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-item {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.community-feature-card:hover .highlight-item {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Feature Stats */
.feature-stats {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3B82F6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    display: block;
}

.community-feature-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #10B981, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-feature-card:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #F59E0B, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Community CTA */
.community-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.community-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 50%, rgba(245, 158, 11, 0.05) 100%);
    z-index: 1;
}

.community-cta > * {
    position: relative;
    z-index: 2;
}

.community-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.community-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.community-cta .btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1e40af 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
}

.community-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #3B82F6 100%);
}

/* Enhanced Community Section Responsive Design */
@media (max-width: 1024px) {
    .community-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .community-section {
        padding: 60px 0;
    }
    
    .community-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .community-feature-card {
        margin: 0 10px;
    }
    
    .feature-header {
        padding: 25px 25px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .feature-content {
        padding: 0 25px 20px;
        text-align: center;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-highlights {
        justify-content: center;
    }
    
    .feature-stats {
        padding: 20px 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .community-cta {
        padding: 40px 25px;
        margin: 30px 10px 0;
    }
    
    .community-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .community-features-grid {
        margin: 30px 0;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .community-cta .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Footer Cookie Banner Styles */
.footer-cookie-section {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.footer-cookie-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-cookie-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.footer-cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.footer-cookie-btn.accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.footer-cookie-btn.decline {
    background: #6b7280;
    color: white;
}

.footer-cookie-btn.decline:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-cookie-buttons {
        justify-content: center;
    }
    
    .footer-cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}