/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #22C55E;
    --secondary-color: #DCFCE7;
    --text-color: #0F172A;
    --background-color: #FFFFFF;
    --border-color: #E5E7EB;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #16A34A;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #BBF7D0;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    position: relative;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(34, 197, 94, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
}

.nav-menu a:active {
    transform: translateY(0);
    background: rgba(34, 197, 94, 0.12);
    box-shadow: 0 1px 4px rgba(34, 197, 94, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.nav-toggle:hover span {
    background-color: var(--primary-color);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary-color);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--primary-color);
}

.nav-toggle.active {
    background: rgba(34, 197, 94, 0.15);
}

/* Hero Section */
.hero {
    background: url('../images/eduplatform.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 250px 0 180px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-content p {

    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #64748B;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Courses Section */
.courses {
    padding: 80px 0;
}

.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: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-icon-img {
    width: 80px;
    height: 80px;
}

.course-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.course-card p {
    color: #64748B;
    margin-bottom: 1.5rem;
}

/* Registration Section */
.registration {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.registration h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--background-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #94A3B8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    position: relative;
}

.form-group input::placeholder,
.form-group select option:first-child {
    color: #94A3B8;
    font-weight: 400;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%2394A3B8" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 50px;
}

.error-message {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9CA3AF;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--background-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateY(120%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748B;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-content .btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Remove list bullets */
ul {
    list-style: none;
}

li {
    list-style: none;
}
@media (max-width: 910px){
  .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    .nav-menu a {
        padding: 12px 20px;
        margin: 0.5rem 0;
        border-radius: 8px;
        background: rgba(34, 197, 94, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
  

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 200px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-content .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #F0FDF4 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* Course Detail Cards */
.courses-detail {
    padding: 80px 0;
}

.course-detail-card {
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.course-detail-card:hover {
    transform: translateY(-5px);
}

.course-image {
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    padding: 2rem;
    text-align: center;
}

.course-flag,
.course-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.course-content {
    padding: 2rem;
}

.course-features {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    color: #64748B;
}

.course-info {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.course-info span {
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Teaching Methods */
.teaching-methods,
.design-tools,
.technologies {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.methods-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card,
.tool-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.method-icon,
.tool-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Technologies Section */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tech-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-item {
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.principles-list {
    list-style: none;
    margin: 1.5rem 0;
}

.principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.principle-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #F1F5F9;
}

.stats-grid .stat-number {
    color: var(--background-color);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Team Section */
.team {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.course-flag img {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.story-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.story-photo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.member-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Values Section */
.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon-img {
    width: 60px;
    height: 60px;
}

/* History Section */
.history {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-left: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748B;
    margin: 0;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: white;
    background: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.nav-menu a.active:hover {
    background: #16A34A;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 0;
    padding: 0;
}

.feature-list li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16A34A 100%);
    color: white;
}

.statistics h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 900;
    
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 1.1rem;
   
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}

.author-info span {
    color: #64748B;
    font-size: 0.9rem;
}

/* Learning Methods Section */
.learning-methods {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.learning-methods h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: var(--background-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #16A34A);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.method-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.method-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.method-tag {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--background-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-image {
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    padding: 2rem;
    text-align: center;
}

.story-avatar {
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.story-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.story-text {
    color: #64748B;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-achievement {
    margin-top: 1rem;
}

.achievement-badge {
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

/* Language Benefits Section */
.language-benefits {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.language-benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list {
    text-align: left;
    margin: 0;
    padding: 0;
}

.benefit-list li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Language Statistics Section */
.language-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16A34A 100%);
    color: white;
}

.language-stats h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.language-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.language-stats .stat-item {
    text-align: center;
    padding: 2rem;
}

.language-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.language-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Design Career Opportunities */
.design-careers {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.design-careers h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.career-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.career-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.career-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.career-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.career-salary {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.career-skills {
    margin: 0;
    padding: 0;
}

.career-skills li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    padding-left: 1.5rem;
}

.career-skills li:last-child {
    border-bottom: none;
}

.career-skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Design Process */
.design-process {
    padding: 80px 0;
}

.design-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #F1F5F9;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-duration {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Design Trends */
.design-trends {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.design-trends h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trend-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trend-image {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trend-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trend-card p {
    color: #64748B;
    line-height: 1.6;
}

/* Design Career Opportunities */
.design-careers {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.design-careers h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.career-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.career-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.career-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.career-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.career-salary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.career-skills {
    margin: 0;
    padding: 0;
}

.career-skills li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.career-skills li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Design Process */
.design-process {
    padding: 80px 0;
}

.design-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.step-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    background: #F1F5F9;
    color: #64748B;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Design Trends */
.design-trends {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.design-trends h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trend-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.trend-image {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trend-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trend-card p {
    color: #64748B;
    line-height: 1.6;
}

/* Programming Career Opportunities */
.programming-careers {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.programming-careers h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.employment-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.employment-stats .stat {
    background: #F1F5F9;
    color: #64748B;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Learning Path */
.learning-path {
    padding: 80px 0;
}

.learning-path h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.path-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.path-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), #16A34A);
    border-radius: 2px;
}

.path-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    z-index: 2;
    position: relative;
}

.step-content {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    margin-left: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.step-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.step-skills {
    color: #64748B;
    font-size: 0.9rem;
    font-style: italic;
}

/* IT Market Stats */
.it-market-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16A34A 100%);
    color: white;
}

.it-market-stats h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.market-stat {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.market-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.market-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.market-trends {
    text-align: center;
    margin-top: 3rem;
}

.market-trends h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.trend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trend-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.trend-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.trend-tag.hot {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-weight: bold;
}

.trend-tag.growing {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

/* About Page New Sections */
/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.achievement-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.achievement-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievement-year {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.reason-card h3 {
    color: var(--text-color);
    margin: 1rem 0 1rem 0;
    font-size: 1.3rem;
}

.reason-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reason-benefits {
    margin: 0;
    padding: 0;
}

.reason-benefits li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    padding-left: 1.5rem;
}

.reason-benefits li:last-child {
    border-bottom: none;
}

.reason-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Success Stories Detailed */
.success-stories-detailed {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.success-stories-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.story-detailed {
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.student-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.student-info h3 {
    margin: 0 0 0.5rem 0;
    color: white;
}

.student-course {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.student-position {
    color: white;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
}

.story-content {
    padding: 2rem;
}

.story-content blockquote {
    font-style: italic;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
}

.story-achievements {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.achievement-tag {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Company Culture */
.company-culture {
    padding: 80px 0;
}

.company-culture h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.culture-text h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.culture-text p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.culture-principles {
    display: grid;
    gap: 1.5rem;
}

.principle h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.principle p {
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.culture-stats {
    display: grid;
    gap: 2rem;
}

.culture-stat {
    text-align: center;
    padding: 2rem;
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.culture-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.culture-stat .stat-label {
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Page New Sections */
/* Schedule Section */
.schedule-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.schedule-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.schedule-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.schedule-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.schedule-times {
    margin-bottom: 1.5rem;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.time-row:last-child {
    border-bottom: none;
}

.time-row.special {
    background: #F8FAFC;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin: 0.5rem 0;
    border: none;
}

.day {
    color: #64748B;
    font-weight: 500;
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.schedule-note {
    color: #64748B;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Visit Us Section */
.visit-us {
    padding: 80px 0;
}

.visit-us h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.visit-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-text h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.visit-text p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.visit-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.feature-text p {
    color: #64748B;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.visit-cta {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.visit-cta h4 {
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.visit-cta p {
    color: #64748B;
    margin: 0 0 1.5rem 0;
}

.visit-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.info-card ul {
    margin: 0;
    padding: 0;
}

.info-card li {
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.contact-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.method-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.method-link:hover {
    text-decoration: underline;
}

.method-time {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* New Index Page Sections */
/* Course Detailed Sections */
.languages-section,
.design-section,
.programming-section {
    padding: 80px 0;
}

.languages-section {
    background-color: #F8FAFC;
}

.design-section {
    background: linear-gradient(135deg, #F8FAFC 0%, #F0FDF4 100%);
}

.programming-section {
    background-color: #F8FAFC;
}

.course-detailed-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--background-color);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.course-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.course-icon-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #16A34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.course-icon-large .course-icon-img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.course-content-detailed h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.course-content-detailed p {
    color: #64748B;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #F8FAFC;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.course-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.course-stats .stat {
    text-align: center;
}

.course-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.course-stats .stat-label {
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.gallery-content p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-category {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.partner-category h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.partner-list {
    display: grid;
    gap: 0.8rem;
}

.partner-item {
    background: #F8FAFC;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #64748B;
    font-weight: 500;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.partnership-benefits {
    margin-top: 3rem;
    text-align: center;
}

.partnership-benefits h3 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #16A34A 100%);
    color: white;
}

.innovation-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.innovation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.innovation-text h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.innovation-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.innovation-features {
    display: grid;
    gap: 1.5rem;
}

.innovation-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon-new {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text-new h4 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.feature-text-new p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.innovation-stats {
    display: grid;
    gap: 2rem;
}

.innovation-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-large {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748B;
    font-size: 0.9rem;
}

.guarantee-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.9rem;
    color: #64748B;
    margin-top: 0.5rem;
}

/* Map Section */
.map-section {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.map-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #F8FAFC;
}

.google-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.google-map:hover iframe {
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 250px;
}

.map-info h4 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.map-info p {
    color: #64748B;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-note {
    font-style: italic;
    font-size: 0.8rem;
    color: #94A3B8;
}

.location-details {
    margin-top: 3rem;
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.transport-list {
    list-style: none;
    margin: 0;
}

.transport-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: #64748B;
}

.transport-list li:last-child {
    border-bottom: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-header p {
    color: #64748B;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--background-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--background-color);
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

.form-control:hover {
    border-color: #94A3B8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-control::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: #F8FAFC;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .courses,
    .registration {
        padding: 60px 0;
    }

    .course-card {
        padding: 1.5rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-left: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }

    #map {
        height: 300px;
    }
}

/* Policy Pages Styles */
.policy-content {
    padding: 80px 0;
}

.policy-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.policy-meta {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.policy-meta p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.policy-section h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #64748B;
}

.policy-section p {
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 1rem;
}

.contact-info {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-footer {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.policy-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748B;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--secondary-color);
    font-weight: 600;
    color: var(--text-color);
}

.cookie-table td {
    color: #64748B;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #F0FDF4 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748B;
    margin: 0;
}

.contact-reminder {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-reminder h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.additional-info {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
    .policy-document {
        padding: 2rem 1.5rem;
    }
    
    .cookie-table {
        overflow-x: auto;
    }
    
    .cookie-table table {
        min-width: 500px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .principle-icon {
        width: 32px;
        height: 32px;
    }

    .value-icon-img {
        width: 50px;
        height: 50px;
    }

    .feature-icon-img {
        width: 50px;
        height: 50px;
    }

    .course-icon-img {
        width: 60px;
        height: 60px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .method-card {
        padding: 2rem 1.5rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        margin-bottom: 2rem;
    }

    

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .language-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .language-stats .stat-item {
        padding: 1rem;
    }

    .language-stats .stat-number {
        font-size: 2rem;
    }

    .google-map iframe {
        height: 300px;
    }

    .map-overlay {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.98);
    }

    .google-map:hover iframe {
        transform: none;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .career-card {
        padding: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .trends-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trend-card {
        padding: 1.5rem;
    }

    .trend-image {
        font-size: 3rem;
    }

    .path-timeline::before {
        left: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .market-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-stat {
        padding: 1rem;
    }

    .market-stat .stat-number {
        font-size: 2rem;
    }

    .trend-tags {
        gap: 0.5rem;
    }

    .trend-tag {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .employment-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .employment-stats .stat {
        text-align: center;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-card {
        padding: 1.5rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .stories-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visit-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .schedule-card {
        padding: 1.5rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-card {
        padding: 1.5rem;
    }

    .course-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .course-highlights {
        grid-template-columns: 1fr;
    }

    .course-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .innovation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--background-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.cookie-popup.show {
    bottom: 0;
     max-width: 900px;
     margin: 0 auto;
}

.cookie-popup.hide {
    bottom: -100%;
}

.cookie-popup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-popup-text h3 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-popup-text p {
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

.cookie-popup-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-popup-text a:hover {
    text-decoration: underline;
}

.cookie-popup-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-text {
    background: none;
    border: none;
    color: #64748B;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background: #F1F5F9;
    color: var(--text-color);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--background-color);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #F1F5F9;
}

.cookie-modal-header h3 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.3rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748B;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #F1F5F9;
    color: var(--text-color);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: var(--text-color);
    margin: 0;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #64748B;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CBD5E1;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #94A3B8;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #F1F5F9;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Cookie Notification Styles */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: var(--background-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.cookie-notification.show {
    right: 20px;
}

.cookie-notification.success {
    border-left-color: #10B981;
}

.cookie-notification.info {
    border-left-color: #3B82F6;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #64748B;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #F1F5F9;
    color: var(--text-color);
}

/* Mobile Responsive for Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .cookie-popup-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-notification {
        right: -350px;
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
    }

    .cookie-notification.show {
        right: 10px;
    }
}