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

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

body {
    font-family: 'Arial', 'Helvetica', 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;
    color: #1a365d;
}

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: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

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

li {
    margin-bottom: 0.5rem;
}

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

.btn-primary {
    background-color: #2563eb;
    color: white;
}

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

.btn-secondary {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background-color: #4b5563;
    color: white;
}

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

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

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

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

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4b5563;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

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

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

.hero-text p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

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

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

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

.service-item:hover {
    transform: translateY(-3px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

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

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

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

/* Values */
.company-values {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

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

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

/* Stats */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.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-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

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

/* Course Information */
.course-info {
    padding: 4rem 0;
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.course-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

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

.course-text ul {
    list-style: none;
    padding: 0;
}

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

.course-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Team */
.team {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.team > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #64748b;
}

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

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

.team-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

/* Course Categories */
.course-categories {
    padding: 4rem 0;
}

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

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

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

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.category-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-card li:last-child {
    border-bottom: none;
}

/* Featured Courses */
.featured-courses {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

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

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

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

.course-content {
    padding: 0 2rem 2rem;
}

.course-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #64748b;
}

.course-details span {
    background-color: #e5e7eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.price {
    color: #2563eb;
    font-weight: 600;
}

/* Learning Modules */
.learning-modules {
    padding: 4rem 0;
}

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

.modules-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.module-list {
    margin-top: 2rem;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.module-item h4 {
    margin-bottom: 0.5rem;
}

.modules-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}

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

/* Course Features */
.course-features {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.pricing-feature {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.pricing-feature h4 {
    color: #059669;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
}

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

/* Testimonials */
.testimonials-intro {
    padding: 4rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-small {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

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

.stat-text {
    font-size: 0.875rem;
    color: #64748b;
}

.intro-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

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

/* Testimonials Grid */
.testimonials-grid {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: #1a365d;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.course {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Success Stories */
.success-stories {
    padding: 4rem 0;
}

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

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

.success-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.success-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin: 1rem 0;
}

/* Companies */
.companies {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.companies h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.companies-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.company-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.company-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

.company-item h4 {
    margin-bottom: 0.5rem;
}

.company-item p {
    font-size: 0.875rem;
    color: #64748b;
}

/* Video Testimonials */
.video-testimonials {
    padding: 4rem 0;
}

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

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

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.video-placeholder {
    position: relative;
    background-color: #f3f4f6;
    padding: 3rem;
    text-align: center;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.video-card h4 {
    padding: 1rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

/* CTA Testimonials */
.cta-testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

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

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

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

/* Blog Overview */
.blog-featured {
    padding: 4rem 0;
}

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

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

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

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

.blog-card.featured {
    grid-column: span 2;
}

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

.blog-svg {
    width: 80px;
    height: 80px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.category {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.date {
    color: #64748b;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h3 a {
    color: #1a365d;
}

.blog-content h3 a:hover {
    color: #2563eb;
}

.read-more {
    color: #2563eb;
    font-weight: 500;
}

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

/* Blog Categories */
.blog-categories {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

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

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

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.newsletter-benefits li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Blog Archive */
.blog-archive {
    padding: 4rem 0;
}

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

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

.archive-section h3 {
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.archive-section ul {
    list-style: none;
    padding: 0;
}

.archive-section li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.archive-section li:last-child {
    border-bottom: none;
}

.archive-section a {
    color: #4b5563;
}

.archive-section a:hover {
    color: #2563eb;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

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

.contact-method h4 {
    margin-bottom: 0.5rem;
}

.contact-method span {
    font-size: 0.875rem;
    color: #64748b;
}

.office-hours {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.office-hours h4 {
    margin-bottom: 1rem;
}

.office-hours ul {
    list-style: none;
    padding: 0;
}

.office-hours li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.office-hours li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form-section h2 {
    margin-bottom: 1rem;
}

.contact-form {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    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: #2563eb;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.faq-item h4 {
    margin-bottom: 0.5rem;
}

/* Map */
.map {
    padding: 4rem 0;
}

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

.map-placeholder {
    background-color: #f3f4f6;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.map-placeholder p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.transport-info {
    margin-top: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.transport-info ul {
    list-style: none;
    padding: 0;
}

.transport-info li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8fafc;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.success-svg {
    width: 80px;
    height: 80px;
    color: #059669;
}

.thanks-hero h1 {
    color: #059669;
    margin-bottom: 1rem;
}

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

.next-steps h2 {
    margin-bottom: 2rem;
}

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

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.step h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* While Waiting */
.while-waiting {
    padding: 4rem 0;
}

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

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

.waiting-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.waiting-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.waiting-item h3 {
    margin-bottom: 1rem;
}

.waiting-item p {
    margin-bottom: 1.5rem;
}

/* Social Proof */
.social-proof {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

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

.proof-stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.legal-meta {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.legal-meta p {
    margin-bottom: 0.5rem;
}

.legal-meta p:last-child {
    margin-bottom: 0;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.legal-text address {
    font-style: normal;
    background-color: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

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

/* Cookie Settings */
.cookie-settings {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.cookie-controls {
    margin: 1rem 0;
}

.cookie-category {
    margin-bottom: 1rem;
}

.cookie-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-name {
    font-weight: 500;
}

.cookie-required {
    color: #64748b;
    font-size: 0.875rem;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

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

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

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

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

/* Browser Instructions */
.browser-instructions {
    margin: 2rem 0;
}

.browser-item {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.browser-item h4 {
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.browser-item p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

/* Blog Article */
.blog-article {
    max-width: none;
}

.article-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem 0 4rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

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

.breadcrumb a:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.article-meta .category {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.article-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.article-svg {
    width: 120px;
    height: 120px;
    filter: brightness(0) invert(1);
}

/* Article Content */
.article-content {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.article-text {
    max-width: none;
}

.article-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.article-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.article-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3b82f6;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #d97706;
}

.highlight-content h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    margin: 0;
    color: #78350f;
}

/* Case Study */
.case-study {
    background-color: #e0f2fe;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0369a1;
    margin: 2rem 0;
}

.case-study h4 {
    color: #0369a1;
    margin-bottom: 1rem;
}

.case-study p {
    margin: 0;
    color: #075985;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

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

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

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.author-info,
.related-articles,
.share-article,
.sustainability-calculator,
.cost-calculator,
.automation-calculator {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.author-info h4,
.related-articles h4,
.share-article h4,
.sustainability-calculator h4,
.cost-calculator h4,
.automation-calculator h4 {
    margin-bottom: 1rem;
    color: #1e40af;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.related-articles li:last-child {
    border-bottom: none;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
}

.share-btn:hover {
    background-color: #1d4ed8;
}

/* Article Navigation */
.article-navigation {
    padding: 2rem 0;
    background-color: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

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

.nav-link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #1d4ed8;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

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

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

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

.footer-logo {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: none;
        border-left: 4px solid transparent;
        padding-left: 1rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-left-color: #2563eb;
        border-bottom-color: transparent;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .course-grid,
    .intro-content,
    .modules-content,
    .contact-grid,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-small {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons,
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .categories-grid,
    .courses-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cards {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .header,
    .footer,
    .article-sidebar,
    .article-navigation,
    .cta-box,
    .btn {
        display: none !important;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-text {
        max-width: 100%;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .highlight-box,
    .case-study {
        page-break-inside: avoid;
    }
}

/* 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,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link {
        border-bottom-width: 3px;
    }
    
    .feature-card,
    .service-item,
    .testimonial-card {
        border: 2px solid #000;
    }
}
