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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo h1 {
    color: #DC143C;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #DC143C;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background-color: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #D4AF37;
    color: #000;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

.btn-outline {
    background-color: transparent;
    color: #DC143C;
    border-color: #DC143C;
}

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

/* About Introduction */
.about-intro {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    background-color: #fff;
    border: 2px dashed #D4AF37;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

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

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #DC143C;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #DC143C;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: #B22222;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    color: #DC143C;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary {
    background-color: #DC143C;
    color: white;
}

.cta .btn-primary:hover {
    background-color: #B22222;
}

.cta .btn-secondary {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

.cta .btn-secondary:hover {
    background-color: #000;
    color: #D4AF37;
}

/* Footer */
.footer {
    background-color: #333;
    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 {
    margin-bottom: 1rem;
    color: #D4AF37;
}

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

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

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

.footer-section a:hover {
    color: #D4AF37;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Contact Form Styles */
.contact-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

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

.contact-info h1 {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    width: 30px;
}

.contact-item h3 {
    color: #DC143C;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Enrollment Form Styles */
.enrollment-section {
    padding: 120px 0 80px;
}

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

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

.enrollment-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.enrollment-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Course Info Styles */
.course-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.course-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 3rem;
}

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

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.course-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.course-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* FAQ Preview Styles */
.faq-preview {
    padding: 80px 0;
}

.faq-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
}

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

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.klaudia-story {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.story-text h2 {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-placeholder {
    background-color: #fff;
    border: 2px dashed #D4AF37;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: #666;
}

.our-mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-text h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.mission-text p {
    color: #666;
    font-size: 1.1rem;
}

.qualifications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.qualification-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.qual-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.qualification-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.qualification-card p {
    color: #666;
}

.why-choose-about {
    padding: 80px 0;
}

.target-audience {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.audience-content p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

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

.audience-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.audience-item i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.audience-item h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.audience-item p {
    color: #666;
    margin: 0;
}

/* Courses Page Styles */
.courses-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.courses-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.courses-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.what-is-bsl {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.bsl-text h2 {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 1.5rem;
}

.bsl-text p {
    font-size: 1.2rem;
    color: #666;
}

.bsl-placeholder {
    background-color: #fff;
    border: 2px dashed #D4AF37;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    color: #666;
}

.course-detail {
    padding: 80px 0;
}

.course-card-large {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.course-header {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-header h2 {
    margin: 0;
    font-size: 2rem;
}

.course-badge {
    background-color: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.course-info h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.course-info p {
    color: #666;
    margin-bottom: 2rem;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    width: 30px;
}

.detail-item h4 {
    color: #DC143C;
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: #666;
    margin: 0;
}

.course-learning h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.learning-list {
    list-style: none;
    padding: 0;
}

.learning-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.learning-list i {
    color: #D4AF37;
}

.course-actions {
    padding: 2rem;
    background-color: #f8f9fa;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.enrollment-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.enrollment-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.faq-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-categories {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #DC143C;
    color: #DC143C;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #DC143C;
    color: white;
}

.faq-section {
    display: none;
    padding: 80px 0;
}

.faq-section.active {
    display: block;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    color: #DC143C;
    margin: 0;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

.still-questions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.questions-content h2 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.questions-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.contact-option {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-option i {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.contact-option h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.contact-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

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

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

.footer-logo-img {
    height: 30px;
    width: auto;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #D4AF37;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

/* Enhanced Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC143C, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #D4AF37;
    font-size: 3rem;
    position: relative;
}

.blog-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.blog-content {
    padding: 2rem;
}

.blog-content h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.blog-content h2 a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #B22222;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    color: #D4AF37;
}

.read-more {
    color: #DC143C;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(220, 20, 60, 0.1);
}

.read-more:hover {
    color: white;
    background: #DC143C;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-posts i {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    display: block;
}

.no-posts h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-posts p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Blog Post Page Styles */
.blog-post-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.blog-post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.post-meta i {
    color: #D4AF37;
}

.blog-post-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.post-article {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.post-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.post-body {
    padding: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    color: #DC143C;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.post-body h3 {
    color: #DC143C;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.3rem;
}

.post-body ul, .post-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-tags {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.tag-label {
    font-weight: 600;
    color: #DC143C;
    margin-right: 0.5rem;
}

.tag {
    display: inline-block;
    background: #DC143C;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #DC143C;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recent-post {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post h4 {
    margin-bottom: 0.5rem;
}

.recent-post h4 a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post h4 a:hover {
    color: #DC143C;
}

.recent-post-date {
    color: #666;
    font-size: 0.8rem;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.sidebar-newsletter input:focus {
    outline: none;
    border-color: #DC143C;
}

.sidebar-newsletter .btn {
    padding: 0.75rem;
    font-size: 0.9rem;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links a:hover {
    color: #DC143C;
}

.quick-links a::before {
    content: '→';
    color: #D4AF37;
    font-weight: bold;
}

.post-navigation {
    padding: 60px 0;
    background: white;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.nav-links .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Responsive Design for Blog Post */
@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-body {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .post-tags {
        padding: 1rem 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links .btn {
        width: 100%;
        justify-content: center;
    }
}

/* 404 Error Page Styles */
.error-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.error-content h1 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #D4AF37;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    min-width: 150px;
    justify-content: center;
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 4rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Newsletter Signup Page Styles */
.newsletter-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
    opacity: 0.3;
}

.newsletter-hero-content {
    position: relative;
    z-index: 1;
}

.newsletter-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.newsletter-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.newsletter-signup {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.newsletter-form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-content h2 {
    color: #DC143C;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-item h3 {
    color: #DC143C;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.newsletter-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.newsletter-form h3 {
    color: #DC143C;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #DC143C;
    border-color: #DC143C;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.newsletter-form .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-note i {
    color: #D4AF37;
}

.newsletter-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
}

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

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.stat-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    display: block;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .newsletter-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .newsletter-hero-content p {
        font-size: 1.1rem;
    }
    
    .newsletter-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-benefits {
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Enhanced Newsletter Styles */
.newsletter-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #DC143C;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(178, 34, 34, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.benefit-content h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
    overflow: hidden;
    position: relative;
}

.newsletter-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
}

.newsletter-form {
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: #DC143C;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

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

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #DC143C;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #DC143C;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #DC143C;
    color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    font-size: 12px;
    font-weight: bold;
}

.newsletter-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.newsletter-submit:hover::before {
    left: 100%;
}

.newsletter-submit:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-note i {
    color: #D4AF37;
    font-size: 1rem;
}

/* Enhanced Newsletter Responsive Styles */
@media (max-width: 768px) {
    .newsletter-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        align-self: center;
    }
    
    .newsletter-form-wrapper {
        margin-top: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        padding: 2rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
}

/* Enhanced Enrollment Page Styles */
.enrollment-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enrollment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="enrollment-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23enrollment-pattern)"/></svg>');
    opacity: 0.3;
}

.enrollment-hero-content {
    position: relative;
    z-index: 1;
}

.enrollment-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.enrollment-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.enrollment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.enrollment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.enrollment-info h2 {
    color: #DC143C;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.enrollment-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.enrollment-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.enrollment-benefits .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.enrollment-benefits .benefit-item i {
    color: #D4AF37;
    font-size: 2rem;
    margin-top: 0.25rem;
}

.enrollment-benefits .benefit-item h3 {
    color: #DC143C;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.enrollment-benefits .benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.enrollment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: #DC143C;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.form-section h3 {
    color: #DC143C;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #D4AF37;
    border-radius: 2px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.course-info {
    padding: 80px 0;
    background: white;
}

.course-info h2 {
    text-align: center;
    color: #DC143C;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.course-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC143C, #D4AF37);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC143C, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.course-card h3 {
    color: #DC143C;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
}

.detail-item i {
    color: #D4AF37;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.detail-item span {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

.enrollment-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 700;
}

.cta-stats .stat p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for Enrollment */
@media (max-width: 768px) {
    .enrollment-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .enrollment-hero-content p {
        font-size: 1.1rem;
    }
    
    .enrollment-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .enrollment-info h2 {
        font-size: 2rem;
    }
    
    .enrollment-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .enrollment-benefits {
        gap: 1.5rem;
    }
    
    .enrollment-benefits .benefit-item {
        padding: 1.5rem;
    }
    
    .course-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-card {
        padding: 2rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .cta-stats .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #DC143C;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: #DC143C;
}

/* Testimonials Styles */
.testimonials-hero {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.testimonials-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonials-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-section {
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating .fas.fa-star {
    color: #D4AF37;
    margin-right: 0.25rem;
}

.testimonial-rating .fas.fa-star:not(.active) {
    color: #ddd;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    color: #DC143C;
    display: block;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* Submit Testimonial */
.submit-testimonial {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-form-container h2 {
    color: #DC143C;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-form-container p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-input label:hover,
.rating-input input[type="radio"]:checked ~ label,
.rating-input input[type="radio"]:checked + label {
    color: #D4AF37;
}

/* No Content States */
.no-posts,
.no-testimonials {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-posts i,
.no-testimonials i {
    margin-bottom: 1rem;
}

.no-posts h3,
.no-testimonials h3 {
    color: #DC143C;
    margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #DC143C;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #B22222;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Footer Enhancements */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .course-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .bsl-content {
        grid-template-columns: 1fr;
    }
    
    .course-content {
        grid-template-columns: 1fr;
    }
    
    .enrollment-content {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .course-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Admin Responsive Design */
@media (max-width: 1200px) {
    .admin-container {
        max-width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .admin-container {
        padding: 0.5rem;
    }
    
    .admin-header {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-header p {
        font-size: 0.9rem;
    }
    
    .admin-nav {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .admin-nav a {
        display: block;
        margin: 0.25rem 0;
        padding: 0.5rem;
        text-align: center;
        border-radius: 5px;
        background: #f8f9fa;
    }
    
    .admin-nav a:hover {
        background: #e9ecef;
    }
    
    .admin-nav a.active {
        background: #DC143C;
        color: white;
    }
    
    .admin-nav a[style*="float: right"] {
        float: none;
        margin-top: 0.5rem;
        background: #dc3545;
        color: white;
    }
    
    .admin-nav a[style*="float: right"]:hover {
        background: #c82333;
    }
    
    /* Table responsive */
    .admin-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table table {
        min-width: 600px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Form responsive */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Button responsive */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Card responsive */
    .admin-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-card h3 {
        font-size: 1.1rem;
    }
    
    /* Stats responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    /* Settings responsive */
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Filter responsive */
    .filter-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group input,
    .filter-group select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .admin-container {
        padding: 0.25rem;
    }
    
    .admin-header {
        padding: 0.75rem;
    }
    
    .admin-header h1 {
        font-size: 1.25rem;
    }
    
    .admin-nav {
        padding: 0.25rem;
    }
    
    .admin-nav a {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.25rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .admin-card {
        padding: 0.75rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.5rem;
        font-size: 14px;
    }
}
