/* 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: #ffffff;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

.btn-tertiary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-tertiary:hover {
    background-color: #3498db;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.logo {
    height: 40px;
    width: 40px;
}

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

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #3498db;
    border-radius: 3px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

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

.hero-text p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-graphic {
    text-align: center;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 60px 0;
}

.page-header .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

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

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

.page-icon {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 60px 0;
}

.services-overview {
    background-color: #f8f9fa;
}

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

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Testimonials */
.testimonials-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.testimonial-card.featured {
    border-left: 4px solid #3498db;
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-author small {
    display: block;
    color: #3498db;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

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

/* Company Story */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Mission & Vision */
.mission-vision {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-card h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
}

/* Course Info */
.course-info {
    padding: 80px 0;
}

.course-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.course-features {
    list-style: none;
    margin: 2rem 0;
}

.course-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.course-features li:last-child {
    border-bottom: none;
}

/* Team */
.team {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.member-role {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.cert-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.cert-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cert-list li:last-child {
    border-bottom: none;
}

/* Services Detail */
.translation-services {
    padding: 80px 0;
}

.service-detail {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.service-detail h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

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

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price {
    background-color: #3498db;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Course Features */
.course-features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.features-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Learning Modules */
.learning-modules {
    padding: 80px 0;
}

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

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

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

.module-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.module-duration {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.module-content {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.module-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.module-content li:last-child {
    border-bottom: none;
}

.module-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3498db;
    margin: 1.5rem 0;
}

/* Additional Services */
.additional-services {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

/* Pricing Policy */
.pricing-policy {
    padding: 80px 0;
}

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

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

.policy-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Statistics */
.testimonials-stats {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0;
}

.testimonials-stats h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.testimonials-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Blog Styles */
.featured-article {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-tag {
    background-color: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-image {
    text-align: center;
}

.featured-img {
    max-width: 100%;
    width: 300px;
    height: auto;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.read-time {
    color: #3498db;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
}

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

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.article-image {
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.article-img {
    width: 80px;
    height: 80px;
}

.article-content {
    padding: 2rem;
}

.article-category {
    background-color: #e9ecef;
    color: #6c757d;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: #3498db;
}

.article-content .article-meta {
    font-size: 0.8rem;
    gap: 1rem;
}

/* Blog Categories */
.blog-categories {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.category-count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: block;
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.blog-newsletter p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-form small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: #6c757d;
    margin-bottom: 2rem;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-wrapper h3 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-detail small {
    color: #6c757d;
    display: block;
    margin-top: 0.5rem;
}

/* Office Hours */
.office-hours {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.hours-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #3498db;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    color: #6c757d;
}

/* Location */
.location-section {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-details {
    margin: 2rem 0;
}

.detail-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.map-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #6c757d;
}

.map-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Contact FAQ */
.contact-faq {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.faq-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

.thank-you-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
}

.thank-you-text {
    text-align: left;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.next-steps h2 {
    color: #3498db;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    margin-bottom: 2rem;
}

.steps-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.steps-list li:last-child {
    border-bottom: none;
}

.contact-urgency {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.contact-urgency h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.urgency-contact {
    margin-top: 1rem;
}

.phone-number,
.email {
    font-weight: 600;
    color: #2c3e50;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* While You Wait */
.while-you-wait {
    background-color: #f8f9fa;
    padding: 80px 0;
}

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

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

.wait-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.legal-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.last-updated {
    opacity: 0.8;
    font-size: 1.1rem;
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #3498db;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

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

.company-info,
.contact-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

/* Cookie Policy Specific */
.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

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

.cookie-settings {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings h4 {
    margin-bottom: 1rem;
}

.cookie-settings .btn {
    margin: 0.5rem;
}

/* Article Styles */
.article-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0;
}

.article-breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: #3498db;
}

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.article-header .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-categories {
    display: flex;
    gap: 0.5rem;
}

.category {
    background-color: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.article-body .article-image {
    text-align: center;
    margin: 3rem 0;
}

.content-image {
    max-width: 100%;
    width: 300px;
    height: auto;
}

/* Article Content Elements */
.example-box,
.solution-box,
.tip-box,
.info-box,
.conclusion-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.example-box h4,
.solution-box h4,
.tip-box h4,
.info-box h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left-color: #27ae60;
}

.comparison-table table,
.schedule-table,
.financial-terms table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.comparison-table th,
.schedule-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td,
.schedule-table tr:last-child td {
    border-bottom: none;
}

/* Article Specific Styles */
.weekly-plan,
.level-assessment,
.smart-goals {
    margin: 2rem 0;
}

.goal-item,
.skills-grid .skill-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

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

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

.resource-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.resource-category h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.spacing-schedule,
.technique-examples {
    margin: 2rem 0;
}

.technique {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.technique h4 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

/* Business English Specific */
.expressions-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.expressions-box ul {
    list-style: none;
    margin: 0;
}

.expressions-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.expressions-box li:last-child {
    border-bottom: none;
}

.presentation-structure,
.negotiation-table {
    margin: 2rem 0;
}

.structure-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.structure-item h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.email-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.email-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.disagreement-phrases,
.help-expressions,
.offer-help-expressions,
.apology-expressions {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.tip {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tip h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* AI Article Specific */
.ai-progress,
.advantages-grid {
    margin: 2rem 0;
}

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

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

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

.advantage-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.limitation-example {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.explanation {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-style: italic;
    color: #6c757d;
}

.ambiguity-examples table {
    margin: 2rem 0;
}

.register-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.register-example {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.register-example h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.domain-analysis {
    margin: 2rem 0;
}

.case-study {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #3498db;
}

.case-study.success {
    background: #d4edda;
    border-left-color: #27ae60;
}

.case-study.failure {
    background: #f8d7da;
    border-left-color: #e74c3c;
}

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

.workflow-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.workflow-step h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border-radius: 50%;
}

.hybrid-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.trend {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trend h4 {
    margin-bottom: 1rem;
}

.market-changes {
    margin: 2rem 0;
}

.market-changes h4 {
    color: #3498db;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.recommendations-table table {
    margin: 2rem 0;
}

.preparation-advice {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.preparation-advice h4 {
    color: #3498db;
    margin-bottom: 1rem;
}

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

.consideration {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.consideration h4 {
    margin-bottom: 1rem;
}

.responsibility-issues {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.responsibility-issues h4 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #e9ecef;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.nav-title:hover {
    color: #3498db;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
}

.related-articles h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.related-image {
    width: 60px;
    height: 60px;
    margin: 1.5rem auto 1rem auto;
    display: block;
}

.related-card h4 {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.related-card h4 a {
    color: #2c3e50;
}

.related-card h4 a:hover {
    color: #3498db;
}

.related-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #6c757d;
    margin: 0;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.article-cta .btn {
    background-color: white;
    color: #3498db;
}

.article-cta .btn:hover {
    background-color: #f8f9fa;
    color: #2980b9;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 30px;
    width: 30px;
}

.footer-brand-text {
    font-size: 1.3rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Page Header */
    .page-header .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Two column layouts */
    .hero-content,
    .why-content,
    .story-content,
    .course-content,
    .cert-content,
    .features-content,
    .contact-content,
    .location-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-buttons,
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Tables */
    .comparison-table,
    .schedule-table,
    .cookie-table {
        overflow-x: auto;
    }
    
    .comparison-table table,
    .schedule-table table,
    .cookie-table table {
        min-width: 500px;
    }
    
    /* Article content */
    .article-header .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .register-comparison {
        grid-template-columns: 1fr;
    }
    
    /* Business English specific */
    .email-structure {
        grid-template-columns: 1fr;
    }
    
    /* Thank you page */
    .thank-you-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thank-you-text {
        text-align: center;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    /* Spacing adjustments */
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .article-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .services-grid,
    .articles-grid,
    .categories-grid,
    .hours-grid,
    .faq-grid,
    .wait-content {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid,
    .future-trends,
    .ethical-considerations {
        grid-template-columns: 1fr;
    }
    
    .cat-workflow {
        grid-template-columns: 1fr;
    }
    
    .workflow-step::before {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .article-cta,
    .article-navigation,
    .related-articles,
    .footer {
        display: none;
    }
    
    .article-content {
        padding: 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        break-after: avoid;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
        border-bottom: 2px solid black;
    }
    
    .page-header h1 {
        color: black;
    }
    
    .article-header {
        background: none;
        color: black;
        border-bottom: 2px solid black;
    }
    
    .article-header h1 {
        color: black;
    }
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #000;
        border: 2px solid #000;
        color: #fff;
    }
    
    .btn-primary:hover {
        background-color: #fff;
        color: #000;
    }
    
    .nav-link {
        border-bottom: 1px solid transparent;
    }
    
    .nav-link:focus {
        border-bottom-color: currentColor;
    }
}