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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1d1f66;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #2d3f99;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1d1f66;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1d1f66;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1d1f66 0%, #4a4caf 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button, .submit-btn, .submit-btn-main, .learn-more-btn {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover, .submit-btn:hover, .submit-btn-main:hover, .learn-more-btn:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #1d1f66;
    padding: 1rem 2rem;
    border: 2px solid #1d1f66;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.secondary-button:hover {
    background: #1d1f66;
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1d1f66;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1d1f66;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-accent {
    background: linear-gradient(135deg, #1d1f66 0%, #4a4caf 100%);
    color: white;
}

.bg-accent h2 {
    color: white;
}

/* Grid Layouts */
.benefits-grid, .teachers-grid, .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item, .teacher-card, .achievement-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover, .teacher-card:hover, .achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon, .teacher-image, .achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.section-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* About and Course Sections */
.about-content, .course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text, .course-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p, .course-text p {
    margin-bottom: 1.5rem;
}

.course-features {
    list-style: none;
    margin-top: 1.5rem;
}

.course-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Achievements */
.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #1d1f66;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: #666;
}

/* Forms */
.subscription-form, .contact-form, .contact-form-main {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d1f66;
    box-shadow: 0 0 0 3px rgba(29, 31, 102, 0.1);
}

.subscription-form input::placeholder,
.contact-form input::placeholder,
.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: #999;
}

/* Subscription Section */
.subscription-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.subscription-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* Contact Page Specific */
.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-detailed {
    word-break: break-word;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e5e9;
}

.contact-item-detailed:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-detail-info h3 {
    margin-bottom: 0.5rem;
    color: #1d1f66;
}

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

.contact-detail-info a {
    color: #1d1f66;
    text-decoration: none;
    font-weight: 600;
}

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

.contact-hours {
    font-size: 0.9rem;
    color: #666;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

.social-links-detailed a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-links-detailed a:hover {
    background: #e9ecef;
}

.contact-form-detailed {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    display: inline-block;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1d1f66;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    text-align: center;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
    margin-top: 2rem;
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.transport-info {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto 0;
}

.transport-info h4 {
    color: #1d1f66;
    margin: 1.5rem 0 0.5rem;
}

.transport-info ul {
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1d1f66 0%, #4a4caf 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    max-width: 800px;
    margin: 0 auto;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-image {
    width: 200px;
    height: 200px;
    float: right;
    margin: 0 0 2rem 2rem;
    border-radius: 12px;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.value-item h4 {
    color: #1d1f66;
    margin-bottom: 1rem;
}

.why-choose-us {
    list-style: none;
    margin: 2rem 0;
}

.why-choose-us li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e1e5e9;
}

.why-choose-us li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Tips Article */
.tips-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: block;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
}

.article-date, .article-author {
    margin: 0 1rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.tip-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1d1f66;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tip-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.tip-section h3 {
    color: #1d1f66;
    margin: 0;
}

.tip-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.article-conclusion {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-box {
    background: linear-gradient(135deg, #1d1f66 0%, #4a4caf 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.cta-box h4 {
    color: white;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #1d1f66;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    color: #1d1f66;
    margin-bottom: 2rem;
}

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

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

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.step-item h3 {
    color: #1d1f66;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-reminder h3 {
    color: #1d1f66;
    margin-bottom: 1rem;
}

.contact-reminder a {
    color: #1d1f66;
    text-decoration: none;
    font-weight: 600;
}

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

/* Resources Section */
.resources-section {
    text-align: center;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
}

.resource-item h3 {
    color: #1d1f66;
    margin-bottom: 1rem;
}

.resource-link {
    color: #1d1f66;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.resource-link:hover {
    text-decoration: underline;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links-vertical a {
    color: #1d1f66;
    text-decoration: none;
    font-weight: 600;
}

.social-links-vertical a:hover {
    text-decoration: underline;
}

/* Footer Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-meta {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: #1d1f66;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    text-align: left;
}

.legal-content h3 {
    color: #1d1f66;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
    text-align: left;
}

.legal-content h4 {
    color: #1d1f66;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #1d1f66;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.cookies-table th {
    background: #1d1f66;
    color: white;
    font-weight: 600;
}

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

.cookies-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-settings-btn {
    background: #1d1f66;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 1rem 0;
}

.cookie-settings-btn:hover {
    background: #2d3f99;
}

/* Footer */
.footer {
    background: #1d1f66;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #4a4caf;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

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

.section {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .course-content,
    .contact-content,
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        float: none;
        margin: 2rem auto;
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .teachers-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid,
    .resources-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .benefit-item,
    .teacher-card,
    .achievement-item,
    .resource-item,
    .step-item {
        padding: 1.5rem;
    }
    
    .tip-section {
        padding: 1.5rem;
    }
    
    .tip-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .cookies-table {
        display: none;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-button,
    .submit-btn,
    .hamburger {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .benefit-item,
    .teacher-card,
    .achievement-item {
        border: 2px solid #1d1f66;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 2px solid #1d1f66;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
