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

html {
    font-size: 16px;
    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 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: #1a365d;
}

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

h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
}

h4 {
    font-size: 1.25rem;
    color: #4a5568;
}

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a365d;
}

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

li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Buttons */
.btn-primary {
    background-color: #2c5aa0;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a365d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    padding: 12px 24px;
    border: 2px solid #2c5aa0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a365d;
    color: white;
    padding: 20px;
    z-index: 1000;
    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;
    gap: 20px;
}

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 0;
}

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

.nav-link {
    color: #4a5568;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c5aa0;
    transition: 0.3s;
}

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

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

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

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

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

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

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

.feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #2c5aa0;
}

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

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

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

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

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

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.services-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-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

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

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

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

.mv-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

.course-info h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

.course-category {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.course-category img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.course-category li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.course-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

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

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

.team-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

.stat h3 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.stat p {
    font-weight: 600;
    color: #4a5568;
}

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

.why-choose h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

.reason {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.reason h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

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

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

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

.module {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.module-header {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    gap: 20px;
}

.module-header img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.module-info h3 {
    color: white;
    margin-bottom: 5px;
}

.module-duration {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.module-content {
    padding: 30px;
}

.module-description {
    margin-bottom: 30px;
}

.module-topics h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

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

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

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

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

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

.pricing-card.featured {
    border: 2px solid #2c5aa0;
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Success Stories Hero */
.success-hero {
    padding: 80px 0;
}

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

.success-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

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

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

.testimonials-featured {
    margin-bottom: 60px;
}

.testimonial {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

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

.testimonial.featured blockquote {
    color: white;
    font-size: 1.2rem;
}

.testimonial.featured cite {
    color: rgba(255, 255, 255, 0.9);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-content cite {
    font-style: normal;
}

.course {
    color: #2c5aa0;
    font-size: 0.9rem;
}

/* Industry Recognition */
.industry-recognition {
    padding: 80px 0;
}

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

.companies-list {
    list-style: none;
    margin-left: 0;
}

.companies-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
}

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

/* Feedback Form */
.feedback-form {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.feedback-form > p {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Blog Sections */
.blog-hero {
    padding: 80px 0;
}

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

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

.featured-articles {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

.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-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category {
    background-color: #2c5aa0;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.date {
    color: #718096;
}

.article-content h3 {
    margin-bottom: 15px;
}

.article-content h3 a {
    color: #1a365d;
    text-decoration: none;
}

.article-content h3 a:hover {
    color: #2c5aa0;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.author {
    color: #718096;
    font-size: 0.9rem;
}

.read-more {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: #1a365d;
}

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

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

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

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

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

.category-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.post-count {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.newsletter-text h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

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

.form-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Popular Resources */
.popular-resources {
    padding: 80px 0;
    background-color: #f8fafc;
}

.popular-resources h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

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

.resource-item h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

.resource-link {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
}

.resource-link:hover {
    color: #1a365d;
}

/* Contact Hero */
.contact-hero {
    padding: 80px 0;
}

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

.quick-contact {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 5px;
}

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

/* Subscription Form */
.subscription-form {
    padding: 80px 0;
    background-color: #f8fafc;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #2c5aa0;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #4a5568;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
}

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

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

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

.method-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.method-info {
    margin-top: 20px;
    text-align: left;
}

.method-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.method-info strong {
    color: #2c5aa0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

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

.faq-item h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.map-container {
    margin-bottom: 40px;
}

.map-placeholder {
    position: relative;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.transport-info h3 {
    text-align: center;
    margin-bottom: 40px;
}

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

.transport-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.transport-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

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

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

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

.thank-you-text h1 {
    color: #2c5aa0;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.next-steps {
    margin: 40px 0;
}

.steps-list {
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    color: #2c5aa0;
}

.step-content p {
    margin: 0;
    color: #4a5568;
}

.contact-reminder {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.contact-reminder h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

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

.while-you-wait h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

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

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

.wait-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Latest Posts */
.latest-posts {
    padding: 80px 0;
}

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

.latest-posts > p {
    text-align: center;
    margin-bottom: 60px;
    color: #4a5568;
}

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

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

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

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h4 {
    margin-bottom: 15px;
    color: #1a365d;
}

.post-content h4 a {
    color: inherit;
    text-decoration: none;
}

.post-content h4 a:hover {
    color: #2c5aa0;
}

/* Quick Actions */
.quick-actions {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

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

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

.action-card h3 {
    margin-bottom: 15px;
    color: #2c5aa0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #2c5aa0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2c5aa0;
    color: white;
}

.mini-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mini-newsletter input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.mini-newsletter button {
    padding: 10px 16px;
    font-size: 0.9rem;
}

.phone-info {
    margin-top: 20px;
}

.phone-info strong {
    display: block;
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

/* Important Notice */
.important-notice {
    padding: 40px 0;
    background-color: #e6fffa;
    border-top: 3px solid #38b2ac;
}

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

.notice-content h3 {
    color: #2c7a7b;
    margin-bottom: 15px;
}

.notice-content p {
    color: #4a5568;
    margin-bottom: 10px;
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.article-header .article-meta {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.read-time {
    color: rgba(255, 255, 255, 0.8);
}

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

.article-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}

.author-details {
    color: rgba(255, 255, 255, 0.9);
}

.author-details strong {
    display: block;
    color: white;
    margin-bottom: 5px;
}

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

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-style: italic;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 10px;
}

.article-body {
    line-height: 1.8;
}

.article-body .lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.article-body h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    color: #1a365d;
}

.article-body h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.article-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4a5568;
}

.comparison-table {
    margin: 40px 0;
}

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

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

.comparison-table th {
    background: #2c5aa0;
    color: white;
    font-weight: 600;
}

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

.comparison-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.formula-box {
    background: #f8fafc;
    border: 2px solid #2c5aa0;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.formula-box h4 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.call-to-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
}

.call-to-action h3 {
    color: white;
    margin-bottom: 15px;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.article-footer {
    border-top: 2px solid #e2e8f0;
    padding-top: 40px;
    margin-top: 60px;
}

.tags {
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.share-btn {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #2c5aa0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #2c5aa0;
    color: white;
}

/* Related Articles */
.related-articles {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid #e2e8f0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.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-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    margin-bottom: 10px;
}

.related-content h4 a {
    color: #1a365d;
    text-decoration: none;
}

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

.related-content p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

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

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

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    color: #1a365d;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    color: #2c5aa0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-section h4 {
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cookie-table {
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-controls {
    margin: 30px 0;
    text-align: center;
}

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .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: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content,
    .about-content,
    .story-content,
    .success-content,
    .recognition-content,
    .contact-hero-content,
    .blog-hero-content,
    .newsletter-content,
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .services-grid,
    .mv-grid,
    .course-grid,
    .team-stats,
    .reasons-grid,
    .pricing-grid,
    .testimonials-grid,
    .articles-grid,
    .categories-grid,
    .resources-grid,
    .methods-grid,
    .faq-grid,
    .wait-content-grid,
    .posts-grid,
    .actions-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card.featured {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .success-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .mini-newsletter {
        flex-direction: column;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-content {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .navbar,
    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .share-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p, ul, ol {
        page-break-inside: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
