

@import url('https://fonts.googleapis.com/css2?family=Delius&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-purple: #6f42c1;
    --secondary-purple: #563d7c;
    --light-purple: #f8f7ff;
    --accent-purple: #9d71e8;
    --dark-purple: #4a2c6a;
    --gradient-primary: linear-gradient(135deg, #6f42c1 0%, #563d7c 100%);
    --gradient-accent: linear-gradient(135deg, #9d71e8 0%, #6f42c1 100%);
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --shadow-light: 0 4px 6px rgba(111, 66, 193, 0.1);
    --shadow-medium: 0 10px 25px rgba(111, 66, 193, 0.15);
    --shadow-heavy: 0 20px 40px rgba(111, 66, 193, 0.2);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h2, h3, h4, h5, h6 {
    font-family: 'Delius', cursive, sans-serif;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}




.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
   font-family: 'Delius', cursive, sans-serif;
}

.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(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-accent);
}

.btn-outline-primary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Delius', cursive, sans-serif;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light-secondary {
    border: 2px solid var(--border-color);
    color: var(--border-color);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Delius', cursive, sans-serif;
}

.btn-outline-light-secondary:hover {
    background: var(--light-purple);
    border-color: var(--light-purple);
    color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light-mirror {
    border: 2px solid var(--border-color);
    color: var(--primary-purple);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: var(--light-purple);
    font-family: 'Delius', cursive, sans-serif;
}

.btn-outline-light-mirror:hover {
    border: 2px solid var(--border-color);
    color: var(--border-color);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}


.cookie-preferences-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookiePreferencesModal.show .cookie-preferences-overlay {
    opacity: 1;
}

.cookie-preferences-modal {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

#cookiePreferencesModal.show .cookie-preferences-modal {
    transform: scale(1);
}

.cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-preferences-header h3 {
    margin: 0;
    color: var(--primary-purple);
}

.close-preferences {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-preferences:hover {
    color: var(--primary-purple);
}

.cookie-preferences-content {
    padding: 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.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 h5 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.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: #ccc;
    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%;
}

input:checked + .slider {
    background-color: var(--primary-purple);
}

input:disabled + .slider {
    background-color: var(--accent-purple);
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-preferences-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .cookie-preferences-modal {
        width: 95%;
        margin: 10px;
    }
    
    .cookie-preferences-header,
    .cookie-preferences-content,
    .cookie-preferences-footer {
        padding: 15px 20px;
    }
    
    .cookie-preferences-footer {
        flex-direction: column;
    }
    
    .cookie-preferences-footer .btn {
        width: 100%;
    }
}


.top-contact-bar {
    background: var(--dark-purple);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact-bar i {
    color: var(--accent-purple);
    margin-right: 8px;
}


.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple) !important;
    transform: translateY(-2px);
}


.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 25px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--light-purple);
    color: var(--primary-purple);
    transform: translateX(5px);
}


.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.8) 0%, rgba(86, 61, 124, 0.9) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 4px 6px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease;
    font-family: 'Delius', cursive, sans-serif;
    
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn {
    margin: 10px;
    animation: fadeInUp 1s ease 0.4s both;
}


.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.hero-arrows:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.cta-section{
    padding: 40px 60px;
    background: var(--gradient-primary);
}
.cta-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-section-secondary{
    background-color: #4a2c6a;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-section-secondary h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 4px 6px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease;
    font-family: 'Delius', cursive, sans-serif;
    text-align: center;
}
.hero-buttons-secondary{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    
}

.mastery-card{
    border-radius: 8px;
    border: 2px solid var(--dark-purple);
    box-shadow: var(--shadow-light);
}

.mastery-card .mastery-header i{
    color: var(--dark-purple);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card{
    display: flex;
    flex-direction: column;
    align-items: center;
   padding: 5px;
}


.about-section {
    background: var(--light-purple);
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 4s linear infinite;
}

.about-card:hover::before {
    opacity: 0.1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.course-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 30px;
}

.course-level {
    display: inline-block;
    background: var(--accent-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--primary-purple);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 20px 0;
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
}


.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    color: var(--accent-purple);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
}


.mini-testimonial {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    color: rgb(62, 62, 62);
}

.mini-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.timeline-title{
    color: var(--primary-purple)
}


.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.conversation-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .conversation-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .conversation-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 15px;
}


.navbar-toggler {
    border: 1px solid #666;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.form-control {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.form-group {
    margin-bottom: 20px;
}

.form-floating > label {
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.3;
    max-width: 90%;
}


.quick-registration {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
}

.registration-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-purple);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}


.main-footer {
    background: var(--dark-purple);
    color: white;
    padding: 60px 0 20px;
}

.footer-section h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

.newsletter-form .input-group {
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-purple);
}

.copyright-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
    
    .hero-arrows {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-card,
    .registration-form {
        padding: 30px 20px;
    }
    
    .top-contact-bar {
        text-align: center;
    }
    
    .top-contact-bar .col-md-6:last-child {
        margin-top: 5px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .about-card {
        margin-bottom: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}


.section-badge .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 8px 16px;
}

.feature-box {
    padding: 10px 0;
    
}

.feature-icon {
    flex-shrink: 0;
}

.about-stats .stat-item {
    margin-bottom: 10px;
}

.stat-number {
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    line-height: 1.2;
}


.course-image-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background-color: #e2e8f0;
    overflow: hidden;
}

.course-image-card:hover {
    transform: translateY(-5px);
}

.course-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.course-image-wrapper img {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.course-image-card:hover .course-image-wrapper img {
    transform: scale(1.05);
}

.course-svg-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}

.svg-icon-bg {
    background: var(--light-purple);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.course-title-link {
    padding: 0 10px;
}

.course-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.course-link:hover {
    color: var(--primary-purple);
    text-decoration: none;
}

.course-link h5 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.course-image-card:hover .course-link h5 {
    color: var(--primary-purple);
}

.course-card-new {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.course-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.course-icon-wrapper {
    margin-bottom: 20px;
}

.course-icon {
    transition: all 0.3s ease;
}

.course-card-new:hover .course-icon {
    transform: scale(1.1);
}

.course-card-new h5 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.course-card-new p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.course-card-new .btn {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}


.policy-content {
    line-height: 1.6;
}

.policy-content h3 {
    border-bottom: 2px solid var(--accent-purple);
    padding-bottom: 10px;
    margin-top: 40px;
    color: var(--primary-purple);
}

.policy-content h5 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.policy-section {
    scroll-margin-top: 100px;
}

.contact-details {
    border-left: 4px solid var(--primary-purple);
}

.cookie-type-card,
.browser-card {
    transition: all 0.3s ease;
}

.cookie-type-card:hover,
.browser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.service-item {
    margin-bottom: 20px;
}

.table th {
    color: var(--primary-purple);
    font-weight: 600;
}


@media (max-width: 768px) {
    .about-content {
        margin-top: 30px;
    }
    
    .course-image-card {
        margin-bottom: 30px;
    }
    
    .course-image-wrapper img {
        height: 200px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
}