/* CSS Variables for consistent theming */
:root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
    --text: #2b2d42;
    --text-light: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    margin: 0 auto;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
    margin: auto 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #f5f5f6;
    transition: var(--transition);
}

a:hover {
    color: #f5f5f6;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #c1121f;
}

.btn-full {
    width: 100%;
}
.space {
    margin-top: 20px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Styling - Optimized for your CodeCraft Workshop logo */
.logo-image {
    height: 50px; /* Adjusted for better visibility */
    width: auto;
    display: block;
}

.footer-logo {
    height: 40px; /* Slightly smaller in footer */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 600;
}


/*Correct the color you have for the nav links dONE.....*/
.nav-links a:hover {
    color: #353839;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-section {
    padding: 60px 0;
    text-align: center;
    background: #050505; /* Deep black background for contrast */
    color: #ffffff;
}

.countdown-section h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
    color: #00ff88; /* Keeping your brand accent for the title only */
    margin-bottom: 30px;
}

.timer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.time-box {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Very thin, soft border */
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: #00ff88; /* Glows only on hover */
}

.time-box span {
    font-family: 'Courier New', Courier, monospace; /* Monospace for that coding feel */
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #f1f1f1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.time-box p {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #666; /* Muted labels so the numbers stand out */
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* About Section with Two Instructors */
.about {
    background: #f8f9fa;
}

.instructors-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.instructor-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 350px;
    position: relative;
}

/* Instructor Image - Left Side */
.instructor-image {
    flex: 0 0 300px; /* Fixed width for image */
    position: relative;
    overflow: hidden;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Instructor Content - Right Side */
.instructor-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.instructor-info {
    padding: 2.5rem;
    width: 100%;
}

.instructor-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.instructor-role {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.instructor-info p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    font-size: 1.05rem;
}

.instructor-skills {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.instructors-note {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-top: 2rem;
}

.instructors-note h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .instructor-image {
        flex: 0 0 250px; /* Slightly smaller image on tablets */
    }
    
    .instructor-info {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .instructor-image {
        flex: 0 0 300px; /* Fixed height for mobile */
        width: 100%;
    }
    
    .instructor-info {
        padding: 1.8rem;
    }
    
    .instructor-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .instructor-image {
        flex: 0 0 250px; /* Smaller image on very small screens */
    }
    
    .instructor-info {
        padding: 1.5rem;
    }
    
    .instructor-skills {
        gap: 0.5rem;
    }
    
    .skill-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
/* Schedule Section */
.schedule-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.schedule-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.schedule-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}


/* Pricing Section */
.pricing {
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.html-card {
    border-color: var(--success);
}

.css-card {
    border-color: var(--primary);
    transform: scale(1.05);
}

.js-card {
    border-color: var(--accent);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.html-card .price {
    color: var(--success);
}

.css-card .price {
    color: var(--primary);
}

.js-card .price {
    color: var(--accent);
}

.price-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-note {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid var(--accent);
}

.pricing-note h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Price Display in Form */
.price-display {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-course-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Responsive Design for Pricing */
@media (max-width: 992px) {
    .css-card {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .selected-course-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
.old-price {
    text-decoration: line-through;
    font-size: 0.6em;
    color: #888;
    margin-left: 10px;
}

.bundle-offer {
    margin-top: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #00ff88; /* Match your accent color */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.bundle-content h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.bundle-note {
    font-style: italic;
    color: #aaa;
    margin-bottom: 20px;
}

/* FAQ Section - Pure CSS Solution */
.faq {
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* Hide the checkbox */
.faq-input {
    display: none;
}

/* FAQ Question Styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    margin-left: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle-icon {
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

/* FAQ Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer-content {
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Checked States - This is the magic! */
.faq-input:checked + .faq-question {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.faq-input:checked + .faq-question .faq-toggle {
    background: var(--accent);
}

.faq-input:checked + .faq-question .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-input:checked + .faq-question + .faq-answer {
    max-height: 1000px; /* Adjust based on your longest content */
}

.faq-input:checked + .faq-question + .faq-answer .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1.5rem;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-contact a {
    color: var(--accent);
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

/* Registration Form */
.registration {
    background: #f8f9fa;
}

.form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-footer {
    margin-top: 2rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
/* Thank You Message Styles */
.thank-you-message {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.thank-you-content {
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

.thank-you-message h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thank-you-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    min-width: 200px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Form transition */
.form-container {
    position: relative;
}

#registrationForm, #thankYouMessage {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive design for thank you message */
@media (max-width: 768px) {
    .thank-you-message {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-message h3 {
        font-size: 1.6rem;
    }
    
    .thank-you-text {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
}*/

/* Thank You Message Styles 
.thank-you-message {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.thank-you-content {
    max-width: 500px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

.thank-you-message h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thank-you-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    min-width: 200px;
}*/

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Form transition */
.form-container {
    position: relative;
}

#registrationForm, #thankYouMessage {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive design for thank you message */
@media (max-width: 768px) {
    .thank-you-message {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-message h3 {
        font-size: 1.6rem;
    }
    
    .thank-you-text {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 6rem 5rem 10rem;
    margin: 0 auto;
    width: initial;
}

/* Powered By Section */
.powered-by {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.powered-by-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.powered-by-text {
    color: #adb5bd;
    font-size: 0.9rem;
}

.miraj-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.miraj-logo {
    height: 38px; /* Adjusted for MHC logo */
    width: auto;
}

.miraj-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-section i {
    margin-right: 10px;
    color: var(--success);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #adb5bd;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 992px) {
    .instructor-card {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }

    .ftt {
        background-color: #212529;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .powered-by-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .miraj-brand {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0; /* Adjust values as needed */
    }
    /* Also, check if specific elements inside the footer need adjustment */
    .footer-content {
        padding: 1rem;
    }
}