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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid #e5e7eb;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    margin-bottom: 16px;
}

.cookie-icon img {
    width: 48px;
    height: 48px;
}

.cookie-banner h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.cookie-banner p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-accept {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept:hover {
    background: #059669;
}

.btn-decline {
    background: transparent;
    color: #6b7280;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-decline:hover {
    color: #374151;
}

.cookie-banner.hidden {
    display: none;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
}

.logo img {
    width: auto;
    height: 32px;
    margin-right: 8px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #1f2937;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
  background: 
linear-gradient(90deg, #09203F 0%, #537895 100%);
  padding: 32px;
  border-radius: 16px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content > p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
}

.hero-subtitle {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(191, 219, 254, 1);
}

/* Stats Section */
.stats {
    padding: 60px 0;
    
}

.stats-grid {
  background: linear-gradient(90deg, #09203F 0%, #537895 100%);
color: white;
    display: grid;
    border-radius: 16px;
    padding: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #10b981;
}

.stat-item p {
    font-size: 16px;
    color: #d1d5db;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f9fafb;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.feature-item {
    text-align: center;
    background: white;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
   border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.testimonial-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #10b981;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 16px;
}

.testimonial-header h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.testimonial-header p {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-item > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

/* Learning Section */
.learning {
    padding: 80px 0;
    background: #f9fafb;
}

.learning h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.learning-item {
    background: white;
    padding: 40px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.learning-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.learning-icon img {
    width: 28px;
    height: 28px;
}

.learning-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.learning-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #6b7280;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

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

.features-list li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Course Structure */
.course-structure {
    padding: 80px 0;
    background: #f9fafb;
}

.course-structure h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.module-item {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.module-item:hover {
    transform: translateY(-4px);
}

.module-icon {
    width: 56px;
    height: 56px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.module-icon img {
    width: 28px;
    height: 28px;
}

.module-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.module-item p {
    color: #6b7280;
    font-size: 14px;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.registration h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.registration-form .btn-primary {
    width: 100%;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #09203F 0%, #537895 100%);
    color: #d1d5db;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #10b981;
}

.footer-bottom {

    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav-wrapper {
      justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content > p {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        padding: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content > p {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .features-grid,
    .testimonials-grid,
    .learning-grid {
        gap: 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .why-choose,
    .learning,
    .course-structure {
        padding: 60px 0;
    }
}

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

/* Form animations */
.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Button animations */
.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(0);
}

/* Loading animation for form submission */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
}

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

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.testimonial-item,
.learning-item,
.pricing-card,
.module-item {
    animation: fadeIn 0.6s ease-out;
}

/* Hover effects */
.feature-item:hover .feature-icon {
    background: #d1fae5;
}

.learning-item:hover .learning-icon {
    background: #dbeafe;
}

.module-item:hover .module-icon {
    background: #e5e7eb;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

textarea {
  resize: none;
}

.policy {
  padding-top: 60px;
  padding-bottom: 120px;
}

.policy h1 {
  font-weight: 800;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  word-break: break-word;
  margin-bottom: 40px;

}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-content a {
  color: inherit;
}

.policy-content li {
  list-style-position: inside;
}

@media (max-width:768px){
    .policy h1 {
font-size: 40px;
    }
}

@media (max-width:450px){
    .policy h1 {
font-size: 28px;
    }
}