/* ============================================
   KODEX ACADEMY - MAIN STYLESHEET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-color: #2d3436;
    --light-color: #f5f5f5;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

html, body {
    scroll-behavior: smooth;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Top Sticky Bar */
.top-sticky-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 20px;
}

.top-bar-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1rem;
    color: inherit;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 42px;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 5px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    z-index: 999;
}

.nav-item {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-item::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 0;
    display: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a.active {
    background-color: #fff3f0;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    border-bottom: none;
    padding-left: 25px;
}

.nav-dropdown:hover .nav-item::after {
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero .btn {
    margin: 10px;
}

.hero .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.hero .btn-primary:hover {
    background-color: var(--light-color);
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

section {
    padding: 40px 0;
}

section.alt {
    background-color: var(--light-color);
}

/* ============================================
   FEATURE SECTION
   ============================================ */

.features-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.features-section .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.feature-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background-color: #f5f5f5;
    min-height: 150px;
}

.feature-image {
    height: 120px;
    width: 120px;
    object-fit: contain;
    max-width: 100%;
}

.feature-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   LEARNING PATH SECTION
   ============================================ */

.learning-path-section {
    padding: 60px 20px;
    background-color: #2d3e50;
    width: 100%;
}

.learning-path-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.learning-path-section .subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.learning-path-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-path-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-image {
    text-align: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ============================================
   RESPONSIVE GRID UTILITY
   ============================================ */

.responsive-grid {
    display: grid;
    gap: 50px;
    width: 100%;
    box-sizing: border-box;
}

.responsive-grid {
    grid-template-columns: 1fr 1fr;
}

.responsive-grid-60-40 {
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
}

@media (max-width: 1024px) {
    .responsive-grid-60-40 {
        grid-template-columns: 55% 45%;
        gap: 35px;
    }

    .two-column-layout {
        grid-template-columns: 50% 50%;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .responsive-grid-60-40 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Feature Icons - Responsive Sizing */
.feature-icon {
    transition: font-size 0.3s ease;
}

/* Three Column Layout */
.three-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Two Column Grid Layout with 70/30 split */
.two-column-grid-5545 {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 50px;
    align-items: start;
}

/* Flex column container */
.flex-column {
    display: flex;
    flex-direction: column;
}

/* Course curriculum list with bottom margin */
.course-curriculum-list-spaced {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .feature-icon {
        font-size: 1rem !important;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .three-column-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .three-column-layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        font-size: 0.9rem !important;
    }
}

/* ============================================
   COURSES & PRODUCTS GRID
   ============================================ */

.featured-courses {
    padding: 60px 20px;
    text-align: center;
}

.featured-courses h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.featured-courses .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.featured-courses .card {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.featured-courses .card-image {
    /* Inherits from .card-image */
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
}

.card-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 0 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.card-rating .stars {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1;
}

.card-rating .rating-value {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 4px 10px;
    border-radius: 20px;
    min-width: 45px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.card-description {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 15px;
    flex-grow: 1;
}

.course-highlights {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.course-highlights li {
    padding: 5px 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: left;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    gap: 10px;
}

.card-footer .btn {
    flex: 1;
    text-align: center;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-item-content h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-item-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer Contact Items */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--primary-color);
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 20px;
}

/* Footer Social Links */
.footer-social-links {
    margin-top: 20px;
}

.footer-social-links p {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.footer-social-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.footer-social-icon {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    max-width: 600px;
    margin: 50px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb-container {
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--light-text);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Top Bar Responsive */
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .top-bar-contact {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .contact-link {
        font-size: 0.85rem;
    }

    .top-bar-social {
        width: 100%;
        justify-content: flex-start;
    }

    header {
        top: auto;
    }

    .header-container {
        height: 70px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown .nav-item::after {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active .nav-item::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f9f9f9;
        padding: 0 0 0 20px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }

    .dropdown-menu a {
        padding: 8px 15px;
        border-left: none;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu a:hover {
        background-color: #f0f0f0;
        padding-left: 15px;
    }

    .dropdown-menu a.active {
        background-color: #f0f0f0;
        border-left: none;
        padding-left: 15px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 400px;
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .blog-item {
        grid-template-columns: 1fr;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .responsive-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    /* Consistent padding for all pages */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 50px 20px;
    }

    .featured-courses {
        padding: 50px 20px;
    }

    .featured-courses .grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0;
    }

    .featured-courses .card {
        max-width: 100%;
    }

    .featured-courses h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .feature-image {
        height: 100px;
        width: 100px;
    }

    .features-section h2 {
        font-size: 1.8rem;
    }

    .learning-path-section h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Page - Two column to single */
    .two-column-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-item {
        flex-direction: row;
        gap: 8px;
    }

    .contact-item-label {
        min-width: 70px;
    }

    /* FAQ grid - 2 columns to 1 column */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 1024px) {
    .featured-courses .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 999;
    }

    .hero {
        min-height: 300px;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        padding: 15px;
    }

    /* Consistent padding for mobile */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 40px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }

    /* Contact page adjustments */
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-label {
        width: auto;
        margin-bottom: 6px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

.text-muted {
    color: var(--light-text);
}

.text-primary {
    color: var(--primary-color);
}

.text-success {
    color: var(--success-color);
}

.text-warning {
    color: var(--warning-color);
}

.text-danger {
    color: var(--danger-color);
}

/* ============================================
   BUTTON STYLES (Orange Primary)
   ============================================ */

.btn-orange {
    background-color: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background-color: white;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-orange.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-orange.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ============================================
   CTA IMAGE STYLES
   ============================================ */

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   COURSE PAGE STYLES
   ============================================ */

/* Course Header Section */
.course-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.course-header h1 {
    color: white;
    margin-bottom: 25px;
    font-size: 2.5rem;
    line-height: 1.3;
}

.course-header p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-top: 0;
}

.course-header p:last-of-type {
    font-size: 1rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

.course-rating-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.course-rating-badge {
    background: rgba(255,255,255,0.25);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.course-button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Course Stats Section */
.course-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.stat-card {
    padding: 35px 25px;
    background-color: var(--light-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-text {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

/* Learning Outcomes Section */
.learning-outcomes-section {
    background-color: #f8fafb;
}

.learning-outcomes-heading {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.outcome-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.outcome-check {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.outcome-text {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Course Features Box */
.course-features-box {
    background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(247,147,30,0.08) 100%);
    border-left: 6px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.course-features-box h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    margin-top: 0;
}

.course-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-feature-item {
    margin-bottom: 16px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
}

.course-feature-icon {
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Why Choose Section */
.why-choose-section {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-color);
}

.why-choose-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
    margin-top: 0;
}

.why-choose-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Course Level Cards */
.course-level-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 6px solid var(--primary-color);
    transition: all 0.3s ease;
}

.course-level-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.course-level-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    margin-top: 0;
}

.course-level-subtitle {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.course-curriculum-list {
    color: var(--text-color);
    margin-bottom: 30px;
    list-style-position: inside;
    font-size: 0.95rem;
}

.course-curriculum-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.course-curriculum-list li:last-child {
    margin-bottom: 0;
}

.course-inquire-btn {
    text-align: center;
    margin-top: 30px;
}

.course-inquire-btn a {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.course-inquire-btn a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* CTA Section */
.course-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    margin-top: 60px;
}

.course-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.course-cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.course-cta-content p {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.course-cta-button a {
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.course-cta-button a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ============================================
   RESPONSIVE IMAGE STYLES
   ============================================ */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Course header image container */
.course-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.course-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Course header images */
.responsive-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Image container with border radius */
.responsive-grid > div:last-child {
    overflow: visible;
}

/* Responsive breakpoints for images */
@media (max-width: 1024px) {
    .course-image-container {
        border-radius: 12px;
    }

    .responsive-grid img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .course-image-container {
        border-radius: 10px;
        margin-top: 20px;
    }

    .responsive-grid img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .course-image-container {
        border-radius: 8px;
        margin-top: 15px;
    }

    .responsive-grid img {
        max-width: 100%;
        height: auto;
    }

    /* Top Bar Extra Small Screens */
    .top-sticky-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        padding: 0 10px;
    }

    .contact-link {
        font-size: 0.75rem;
    }

    .contact-icon {
        font-size: 0.85rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon i {
        font-size: 0.85rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    color: white;
}

.contact-main {
    padding: 60px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
}

.contact-info {
    text-align: left;
}

.contact-info h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item-label {
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: 80px;
}

.contact-item-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.contact-item-link.whatsapp {
    color: #25D366;
}

.social-links {
    margin-top: 35px;
}

.social-links p {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.social-links-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.contact-info .social-icon {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-info .social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.social-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-link.linkedin {
    color: #0A66C2;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.youtube {
    color: #FF0000;
}

.social-link.twitter {
    color: #000000;
}

/* Contact Form */
.contact-form-container {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.contact-form-container > p {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.full-width {
    flex-direction: column;
    align-items: flex-start;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 120px;
    flex-shrink: 0;
}

.form-group.full-width .form-label {
    width: auto;
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    flex: 1;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group.full-width .form-input,
.form-group.full-width .form-textarea {
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.faq-section > p {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Footer */
.contact-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: var(--light-text);
}

.contact-footer p {
    margin: 0;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-main {
        padding: 40px 20px;
    }

    .contact-container {
        max-width: 100%;
    }

    /* Two-column layouts to one-column */
    .two-column-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-item-label {
        min-width: auto;
    }

    .contact-item-link {
        flex: none;
        width: 100%;
    }

    .social-links-container {
        flex-direction: row;
        gap: 8px;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 30px 20px;
        background-color: #f5f5f5;
    }

    .contact-form-container h2 {
        font-size: 1.3rem;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-label {
        width: auto !important;
        margin-bottom: 6px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        flex: none;
    }

    .form-submit {
        width: 100%;
        padding: 14px 20px;
    }

    /* FAQ grid - 2 columns to 1 column */
    .faq-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-section h2 {
        font-size: 1.3rem;
    }

    /* Featured courses grid - 3 columns to 1 column */
    .featured-courses .grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .contact-hero {
        padding: 30px 15px;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-main {
        padding: 30px 15px;
    }

    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item-label {
        font-size: 0.75rem;
    }

    .contact-item-link {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 20px 15px;
    }

    .contact-form-container > p {
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-input,
    .form-textarea {
        padding: 8px 10px;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .faq-section h2 {
        font-size: 1.2rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.85rem;
    }

    .contact-footer {
        margin-top: 40px;
        padding-top: 20px;
    }

    .contact-footer p {
        font-size: 0.75rem;
    }

    .social-link {
        font-size: 0.85rem;
    }
}
