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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #7E5CAD;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: #5d4280;
    outline: 2px solid #7E5CAD;
    outline-offset: 2px;
}

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

.section {
    padding: 4rem 0;
}

/* ===== Header & Navigation ===== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
    position: relative;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7E5CAD;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

.nav-link.active,
.nav-link:hover {
    color: #7E5CAD;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #7E5CAD;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #f8f6ff 0%, #e8e3f3 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* ===== Thank You Hero ===== */
.thank-you-hero .success-icon {
    font-size: 4rem;
    color: #7E5CAD;
    margin-bottom: 1rem;
    display: block;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #7E5CAD;
    color: #fff;
    border-color: #7E5CAD;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #5d4280;
    border-color: #5d4280;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(126, 92, 173, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #7E5CAD;
    border-color: #7E5CAD;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: #7E5CAD;
    color: #fff;
}

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

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f6ff;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #7E5CAD;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* ===== Team Highlights ===== */
.team-highlights {
    margin-top: 2rem;
}

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

.highlight-item {
    background-color: #f8f6ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #7E5CAD;
}

.highlight-item h4 {
    color: #7E5CAD;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== Mission Section ===== */
.mission {
    background-color: #f8f6ff;
}

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

.mission-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

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

.pillar {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.pillar h4 {
    color: #7E5CAD;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.mission-vision {
    margin: 3rem 0;
    text-align: center;
}

.mission-vision h3 {
    color: #7E5CAD;
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.cta-section h3 {
    color: #7E5CAD;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    max-width: none;
}

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

.contact-info {
    background-color: #f8f6ff;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: #7E5CAD;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.opening-hours p {
    margin-bottom: 0.25rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    background-color: #f8f6ff;
}

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

.faq-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: #7E5CAD;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== Courses Grid ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-image {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7E5CAD;
    background-color: rgba(126, 92, 173, 0.1);
    padding: 1rem 2rem;
    border-radius: 6px;
}

.course-content {
    padding: 1.5rem;
}

.course-details {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f6ff;
    border-radius: 6px;
}

.course-details ul {
    list-style: none;
    margin: 0;
}

.course-details li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.course-details li:last-child {
    margin-bottom: 0;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.course-duration {
    color: #666;
    font-size: 0.9rem;
}

.course-price {
    font-weight: 600;
    color: #7E5CAD;
    font-size: 1.1rem;
}

/* ===== Course Information ===== */
.course-info {
    background-color: #f8f6ff;
}

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

.info-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.info-item h3 {
    color: #7E5CAD;
    margin-bottom: 1rem;
}

.info-item ul {
    list-style-type: disc;
    padding-left: 1.2rem;
}

.info-item li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* ===== Masterclasses ===== */
.masterclasses {
    background-color: #f8f6ff;
}

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

.masterclass-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.masterclass-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.masterclass-date {
    color: #666;
    font-size: 0.9rem;
}

.masterclass-price {
    font-weight: 600;
    color: #7E5CAD;
    font-size: 1.1rem;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #7E5CAD;
}

.review-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #7E5CAD;
    font-size: 1.2rem;
}

.review-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #7E5CAD;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #999 !important;
    font-size: 0.8rem !important;
}

/* ===== Statistics Section ===== */
.stats-section {
    background-color: #f8f6ff;
}

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

.stat-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7E5CAD;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #666;
}

/* ===== Testimonials Detail ===== */
.testimonials-detail {
    background-color: #fff;
}

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

.testimonial-highlight {
    background-color: #f8f6ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7E5CAD;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-highlight cite {
    color: #7E5CAD;
    font-weight: 600;
    font-style: normal;
}

.testimonial-points h3 {
    color: #7E5CAD;
    margin-bottom: 1.5rem;
}

.testimonial-points ul {
    list-style: none;
    padding: 0;
}

.testimonial-points li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.testimonial-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7E5CAD;
    font-weight: 600;
}

/* ===== Thank You Content ===== */
.thank-you-content {
    text-align: center;
}

.thank-you-info {
    margin-bottom: 3rem;
}

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

.step-item {
    background-color: #f8f6ff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #7E5CAD;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.explore-more {
    background-color: #f8f6ff;
    padding: 3rem;
    border-radius: 12px;
}

.explore-more h2 {
    color: #7E5CAD;
    margin-bottom: 1rem;
}

/* ===== Legal Content ===== */
.legal-content {
    padding: 2rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.legal-document h2 {
    color: #7E5CAD;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

.legal-document h3 {
    color: #333;
    margin-top: 1.5rem;
}

.legal-document ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

/* ===== Section Footer ===== */
.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Footer ===== */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #7E5CAD;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-column a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #7E5CAD;
    outline: none;
    text-decoration: underline;
}

.footer-column p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #7E5CAD;
    box-shadow: 0 0 0 3px rgba(126, 92, 173, 0.1);
}

.form-input.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

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

select.form-input {
    cursor: pointer;
}

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

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== Custom Checkboxes ===== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover .checkmark {
    border-color: #7E5CAD;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #7E5CAD;
    border-color: #7E5CAD;
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:focus ~ .checkmark {
    box-shadow: 0 0 0 3px rgba(126, 92, 173, 0.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 0;
        border-top: 1px solid #eee;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f5f5f5;
        color: #333;
        text-decoration: none;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        color: #7E5CAD;
        background-color: #f8f6ff;
        padding-left: 0.5rem;
        outline: none;
    }
    
    .nav-link.active {
        color: #7E5CAD;
        font-weight: 600;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .masterclasses-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .course-card,
    .masterclass-card,
    .review-card {
        margin: 0 5px;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.5rem;
    }
    
    .legal-document {
        padding: 2rem 1rem;
    }
    
    .explore-more {
        padding: 2rem 1rem;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #7E5CAD;
}

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

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

.cookie-popup-content {
    flex: 1;
    min-width: 250px;
}

.cookie-popup-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.cookie-popup-content a {
    color: #7E5CAD;
    text-decoration: underline;
}

.cookie-popup-content a:hover {
    color: #9A7BC8;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #7E5CAD;
    color: #fff;
}

.cookie-btn-accept:hover {
    background-color: #6B4C87;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-popup-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-popup-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

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