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

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

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

h4 {
    font-size: 1.25rem;
    color: #34495e;
}

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

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

a:hover {
    color: #2980b9;
}

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

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

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid #bdc3c7;
}

.btn-secondary:hover {
    background-color: #d5dbdb;
    color: #2c3e50;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li {
    margin: 0 15px;
}

.nav a {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

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

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

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

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background-color: #3498db;
    color: white;
}

.cookie-buttons button:nth-child(2) {
    background-color: #95a5a6;
    color: white;
}

.cookie-buttons button:last-child {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    min-height: 500px;
    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;
    color: white;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

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

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

.section-alt {
    background-color: #f8f9fa;
}

/* Features Section */
.features {
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

.blog-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-card img {
    width: 60px;
    height: 60px;
    margin: 20px;
}

.blog-content {
    padding: 0 20px 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.blog-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #3498db;
    font-weight: 600;
}

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

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

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

.story-text h2 {
    margin-bottom: 20px;
}

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

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

/* Values Section */
.values {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.course-text h2,
.course-text h3 {
    margin-bottom: 20px;
}

.course-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.course-text ul {
    margin-bottom: 20px;
}

.course-text li {
    margin-bottom: 10px;
}

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

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

.team h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.team-member {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member p {
    margin-bottom: 10px;
}

.team-member p strong {
    color: #3498db;
}

/* Main Course */
.main-course {
    padding: 80px 0;
}

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

.course-content h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.course-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature img {
    width: 24px;
    height: 24px;
}

.feature span {
    font-weight: 600;
}

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

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

.learning-modules h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.module-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.module-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.module-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.module-card p {
    margin-bottom: 15px;
    color: #666;
}

.module-card ul {
    margin-bottom: 0;
}

.module-card li {
    margin-bottom: 8px;
}

/* Course Features Section */
.course-features-section {
    padding: 80px 0;
}

.course-features-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.feature-detail {
    text-align: center;
    padding: 40px;
}

.feature-detail img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-detail h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.additional-services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    color: #666;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498db;
}

/* Success Stats */
.success-stats {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.success-stats h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

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

.featured-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #3498db;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-card.featured .quote-icon {
    color: white;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-card.featured .author-info span {
    color: rgba(255,255,255,0.8);
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-top: 5px;
}

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

.more-testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Testimonial Form */
.testimonial-form {
    padding: 80px 0;
}

.testimonial-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.testimonial-form p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
}

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

.post-image img {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.post-category {
    background-color: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-content h2 {
    margin: 15px 0;
    color: #2c3e50;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #999;
    font-size: 0.9rem;
}

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

.card-image img {
    width: 60px;
    height: 60px;
    margin: 20px;
}

.card-content {
    padding: 0 20px 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form button {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #34495e;
}

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

.blog-categories h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.category-card p {
    color: #666;
}

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

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

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.contact-text h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-text p {
    margin-bottom: 0;
    color: #666;
}

.contact-form h2 {
    margin-bottom: 30px;
}

/* Forms */
.form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.form-group.checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

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

.quick-contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.quick-contact-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-contact-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.quick-contact-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.quick-contact-card p {
    margin-bottom: 20px;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    margin-bottom: 0;
    color: #666;
}

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

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.thank-you h1 {
    margin-bottom: 20px;
    color: #27ae60;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.response-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.response-info h3 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.response-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    margin-bottom: 0;
    color: #666;
}

.contact-reminder {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.contact-reminder h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-reminder p {
    margin-bottom: 5px;
    color: #666;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.meanwhile h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.meanwhile-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.meanwhile-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.meanwhile-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.meanwhile-card p {
    margin-bottom: 20px;
    color: #666;
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-date,
.article-author {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.article-header h1 {
    color: white;
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.article-image img {
    width: 100px;
    height: 100px;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

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

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

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.article-body h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
}

.article-body li {
    margin-bottom: 8px;
}

/* Info Boxes */
.info-box,
.warning-box,
.error-box,
.tip-box,
.calculation-box,
.trend-box {
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid;
}

.info-box {
    background-color: #e8f4f8;
    border-color: #3498db;
}

.warning-box {
    background-color: #fef9e7;
    border-color: #f39c12;
}

.error-box {
    background-color: #fdeaea;
    border-color: #e74c3c;
}

.tip-box {
    background-color: #eafaf1;
    border-color: #27ae60;
}

.calculation-box {
    background-color: #f8f9fa;
    border-color: #6c757d;
}

.trend-box {
    background-color: #f3e5f5;
    border-color: #9b59b6;
}

.info-box h4,
.warning-box h4,
.error-box h4,
.tip-box h4,
.calculation-box h4,
.trend-box h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-box ul,
.warning-box ul,
.error-box ul,
.tip-box ul,
.calculation-box ul,
.trend-box ul {
    margin-bottom: 0;
}

/* Market Analysis */
.market-analysis {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.market-analysis h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.market-analysis ul {
    margin-bottom: 20px;
}

/* Cookie Table */
.cookie-table {
    margin: 30px 0;
}

.cookie-table h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Cookie Controls */
.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

/* Article Sidebar */
.article-sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.sidebar-section p {
    margin-bottom: 20px;
    color: #666;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.related-article img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.related-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

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

.related-date {
    color: #999;
    font-size: 0.9rem;
}

.sidebar-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-section .newsletter-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sidebar-section .newsletter-form button {
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 15px;
}

.article-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.article-cta .btn {
    background-color: white;
    color: #667eea;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background-color: white;
    color: #667eea;
}

.cta .btn-primary:hover {
    background-color: #f8f9fa;
    color: #667eea;
}

.cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #667eea;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

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

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-text ul {
    margin-bottom: 25px;
}

.legal-text li {
    margin-bottom: 8px;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.contact-box p {
    margin-bottom: 10px;
}

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

.last-updated {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.last-updated p {
    margin-bottom: 0;
    color: #2c3e50;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .about-content,
    .story-content,
    .course-content,
    .contact-content,
    .featured-post,
    .course-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .values-grid,
    .team-grid,
    .modules-grid,
    .services-grid,
    .stats-grid,
    .testimonials-grid,
    .blog-grid,
    .categories-grid,
    .quick-contact-grid,
    .faq-grid,
    .meanwhile-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .response-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons,
    .hero-buttons,
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .feature-card,
    .value-card,
    .team-member,
    .service-card,
    .stat-card,
    .testimonial-card,
    .blog-card,
    .category-card,
    .quick-contact-card,
    .meanwhile-card {
        padding: 30px;
    }
    
    .article-header,
    .newsletter,
    .cta {
        padding: 40px 0;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}
