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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fdfcf8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    border-bottom: 3px solid #f4d03f;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4ac0d;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

a:hover {
    color: #b7950b;
    text-decoration: underline;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4ac0d;
}

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

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

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

.nav-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a252f;
    font-family: 'Arial', sans-serif;
}

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

.nav-link {
    color: #1a252f;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #d4ac0d;
    color: white;
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a252f;
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 1rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    border-top: 3px solid #f4d03f;
}

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

.cookie-text h3 {
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    color: #1a252f;
    border: 2px solid #d4ac0d;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4ac0d 0%, #f4d03f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 172, 13, 0.3);
    text-decoration: none;
    color: #1a252f;
}

.btn-secondary {
    background-color: #2c3e50;
    color: white;
    border: 2px solid #34495e;
}

.btn-secondary:hover {
    background-color: #34495e;
    color: white;
    text-decoration: none;
}

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

.btn-outline:hover {
    background-color: #d4ac0d;
    color: white;
    text-decoration: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdfcf8 0%, #f8f6f0 100%);
    padding: 150px 0 80px;
    margin-top: 70px;
    border-bottom: 5px solid #f4d03f;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #1a252f;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
    border-bottom: 5px solid #d4ac0d;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-subtitle {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0;
}

/* Sections */
.features,
.about-content,
.course-modules,
.testimonials-section,
.blog-articles {
    padding: 80px 0;
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #f4d03f;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.content-section h2 {
    color: #d4ac0d;
    border-bottom: 2px solid #f4d03f;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
}

.value-card h3 {
    color: #d4ac0d;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
}

.team-member h3 {
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.role {
    color: #d4ac0d;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Course Sections */
.flagship-course {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 80px 0;
}

.course-hero {
    max-width: 1000px;
    margin: 0 auto;
}

.course-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #f4d03f;
}

.course-duration {
    color: #d4ac0d;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.course-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.course-highlights h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

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

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

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

.course-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f4d03f;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #d4ac0d;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
    transition: transform 0.3s ease;
}

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

.module-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

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

.module-card li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
}

.module-card li::before {
    content: "•";
    color: #f4d03f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Additional Courses */
.additional-courses {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 80px 0;
}

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

.short-course {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
}

.short-course h3 {
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.duration {
    color: #d4ac0d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.short-course .price {
    font-size: 1.25rem;
    color: #d4ac0d;
    font-weight: bold;
    margin-top: 1rem;
}

/* Testimonials */
.success-stats {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 60px 0;
    color: white;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: #bdc3c7;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
}

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

.testimonial-content p {
    font-style: italic;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
}

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

.position {
    color: #d4ac0d;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.graduation {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Career Outcomes */
.career-outcomes {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 80px 0;
}

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

.employer-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
}

.employer-category h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.employer-category ul {
    list-style: none;
    padding-left: 0;
}

.employer-category li {
    padding: 0.25rem 0;
    color: #2c3e50;
}

/* Blog Styles */
.featured-article {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 80px 0;
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #f4d03f;
}

.featured-tag {
    background: #f4d03f;
    color: #1a252f;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-content h2 {
    margin: 1rem 0;
    border-bottom: none;
}

.featured-content h2 a {
    color: #1a252f;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #d4ac0d;
}

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

.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
    transition: transform 0.3s ease;
}

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

.article-content {
    padding: 2rem;
}

.article-category {
    background: #d4ac0d;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-card h3 {
    margin-bottom: 0.75rem;
}

.article-card h3 a {
    color: #1a252f;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #d4ac0d;
}

.article-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta span {
    margin-right: 1rem;
}

.article-excerpt {
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.read-more:hover {
    color: #b7950b;
}

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

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
    text-align: center;
}

.category-card h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.post-count {
    color: #d4ac0d;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    color: #f4d03f;
    margin-bottom: 1rem;
    border-bottom: none;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 1rem;
    gap: 1rem;
}

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

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-bottom: 0;
}

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

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
}

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

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

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

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

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

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

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e1e1;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
    height: fit-content;
}

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

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

.contact-method h3 {
    color: #1a252f;
    margin-bottom: 1rem;
}

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

.office-hours li {
    padding: 0.25rem 0;
    color: #2c3e50;
}

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

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #f8f6f0 0%, #fdfcf8 100%);
    padding: 60px 0;
}

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
    margin-top: 2rem;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #e1e1e1;
}

.map-placeholder p {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.map-placeholder ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.map-placeholder li {
    padding: 0.5rem 0;
    color: #2c3e50;
}

/* Thank You Page */
.thanks-section {
    padding: 150px 0 80px;
    margin-top: 70px;
    text-align: center;
}

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

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.next-steps {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
    margin-bottom: 3rem;
    text-align: left;
}

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

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

.step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f4d03f;
    color: #1a252f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.immediate-resources,
.contact-reminder,
.social-proof {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
    margin-bottom: 2rem;
    text-align: left;
}

.resource-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Legal Documents */
.legal-document {
    padding: 120px 0 80px;
    margin-top: 70px;
}

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

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 0;
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #f4d03f;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e1e1;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: #1a252f;
    border-bottom: 2px solid #f4d03f;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f4d03f;
    margin: 1rem 0;
}

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

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

.cookie-table th {
    background: #f4d03f;
    color: #1a252f;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.cookie-preferences-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f4d03f;
    margin-top: 2rem;
    text-align: center;
}

/* Blog Article Styles */
.blog-article {
    margin-top: 70px;
}

.article-header {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    padding: 100px 0 60px;
    border-bottom: 5px solid #d4ac0d;
}

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

.breadcrumb a {
    color: #1a252f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.article-header .article-meta {
    color: #2c3e50;
    font-size: 1rem;
}

.article-header .article-meta span {
    margin-right: 1.5rem;
    font-weight: 600;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #f4d03f;
}

.article-body .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f4d03f;
}

.article-body h2 {
    color: #1a252f;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.article-body h3 {
    color: #d4ac0d;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #f4d03f;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 5px;
    font-style: italic;
}

.article-body blockquote p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-body blockquote footer {
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.author-bio,
.related-articles,
.newsletter-signup,
.course-promotion,
.social-sharing,
.career-resources {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f4d03f;
}

.author-bio h3,
.related-articles h3,
.course-promotion h3,
.social-sharing h3,
.career-resources h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f4d03f;
    padding-bottom: 0.5rem;
}

.related-articles ul,
.career-resources ul {
    list-style: none;
    padding-left: 0;
}

.related-articles li,
.career-resources li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e1e1;
}

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

.related-articles a,
.career-resources a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

.related-articles a:hover,
.career-resources a:hover {
    color: #d4ac0d;
    text-decoration: underline;
}

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

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

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

.cta-content h2 {
    color: #f4d03f;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 5px solid #f4d03f;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-section h3 {
    color: #f4d03f;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f4d03f;
    padding-bottom: 0.5rem;
}

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

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

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

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

.footer-section a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .modules-grid,
    .testimonials-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 2rem;
    }
    
    .article-header .article-meta span {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .quick-links {
        flex-direction: column;
    }
    
    .resource-links {
        flex-direction: column;
        align-items: center;
    }
    
    .course-price {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-body .lead {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .cta-section,
    .newsletter-signup {
        display: none;
    }
    
    .hero,
    .page-header {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .article-body {
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-sidebar {
        display: none;
    }
}

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

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #f4d03f;
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
