/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Navigation */
.top-nav {
    background: #e31837;
    padding: 5px 0;
}

    .top-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    width: 200px;
}

.nav-center ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-center a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

/* Nav Right - Updated with Register Button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Register Button */
.register-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .register-btn:hover {
        background: white;
        color: #e31837;
    }

/* Login Dropdown Container */
.login-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

    /* Dropdown Links */
    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.2s ease;
    }

        .dropdown-menu a:hover {
            background: #f8f9fa;
            color: #e31837;
        }

/* Show dropdown on hover */
.login-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Login Button Style */
.login-btn {
    background: white;
    color: #e31837;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .login-btn:hover {
        background: #f0f0f0;
    }

/* Secondary Navigation */
.secondary-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
}

    .secondary-nav .container {
        display: flex;
        justify-content: flex-end;
    }

    .secondary-nav ul {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .secondary-nav a {
        color: #333;
        text-decoration: none;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .secondary-nav i {
        color: #e31837;
    }

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 33.333%;
    display: flex;
    /* align-items: center; */
    position: relative;
    background: linear-gradient(#f8f8f8 50%);
}

.slide-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-content {
    width: 100%;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
}

    .hero-image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1.1);
        transition: transform 1.5s ease;
    }

.slide.active .hero-image img {
    transform: scale(1);
}

.hero h1 {
    font-size: 48px;
    color: #e31837;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.features {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.3s forwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .feature i {
        font-size: 24px;
        color: #e31837;
    }

    .feature p {
        font-size: 14px;
        color: #333;
        line-height: 1.4;
    }

.cta-button {
    background: #e31837;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.2s forwards;
}

    .cta-button:hover {
        background: #c41126;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
    }

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #e31837;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-nav:hover {
        background: #e31837;
        color: white;
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(227, 24, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: #e31837;
        transform: scale(1.2);
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-tag {
    color: #e31837;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.apply-now {
    display: inline-flex;
    align-items: center;
    color: #e31837;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}

    .apply-now i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .apply-now:hover {
        color: #c41126;
    }

        .apply-now:hover i {
            transform: translateX(5px);
        }

/* Hausla Section */
.hausla-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.hausla-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }

.text-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

    .text-card h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
        line-height: 1.3;
    }

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hausla-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-wrapper p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

    .content-wrapper p strong {
        font-weight: 700;
        color: #e31837;
        font-style: italic;
    }

/* Need Help Section */
.need-help-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 600;
}

.action-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.action-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 220px;
    max-width: 280px;
    transition: transform 0.3s ease;
    min-height: 105px;
}

    .action-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.card-icon {
    font-size: 24px;
    color: #e31837;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e31837;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

    .feature-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.feature-block:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Footer Links Section */
.footer-links-section {
    padding: 40px 0;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
}

.footer-category {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

    .footer-category:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .footer-category h4 {
        font-size: 16px;
        color: #333;
        margin-bottom: 10px;
        font-weight: 600;
        text-transform: capitalize;
    }

.link-list {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

    .link-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .link-list a:hover {
            color: #e31837;
            text-decoration: underline;
        }

        .link-list a:not(:last-child) {
            margin-right: 8px;
        }

/* Back to Top */
.back-to-top {
    text-align: right;
    padding: 20px 15px;
    background: #fff;
    border-top: 1px solid #ddd;
}

    .back-to-top a {
        color: #333;
        font-size: 16px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color 0.2s ease;
    }

        .back-to-top a:hover {
            color: #e31837;
        }

        .back-to-top a i {
            font-size: 14px;
        }

/* Main Footer */
.main-footer {
    background: #fff;
    padding: 50px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-column h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

    .about-content p:first-child {
        font-weight: 600;
        margin-bottom: 10px;
    }

.read-more {
    color: #e31837;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

    .read-more:hover {
        text-decoration: underline;
    }

.useful-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .useful-links li {
        margin-bottom: 10px;
    }

    .useful-links a {
        color: #555;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.5;
        transition: color 0.2s ease;
    }

        .useful-links a:hover {
            color: #e31837;
            text-decoration: underline;
        }

.contact-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

    .contact-info p strong {
        font-weight: 600;
    }

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .contact-info a:hover {
        color: #e31837;
        text-decoration: underline;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .newsletter-form input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        color: #555;
        outline: none;
        transition: border-color 0.2s ease;
    }

        .newsletter-form input:focus {
            border-color: #e31837;
        }

        .newsletter-form input::placeholder {
            color: #999;
            font-size: 14px;
        }

.subscribe-btn {
    background: #e31837;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .subscribe-btn:hover {
        background: #c41126;
    }

.footer-bottom {
    background: #e31837;
    padding: 15px 0;
    margin-top: 40px;
}

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        max-width: 1200px;
        margin: 0 auto;
    }

.footer-nav {
    display: flex;
    gap: 25px;
}

    .footer-nav a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .footer-nav a:hover {
            color: #fff;
            text-decoration: underline;
        }

.footer-copyright {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info h2,
.contact-form h2 {
    color: #e31837;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #e31837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.contact-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
}

    .contact-text a:hover {
        color: #e31837;
        text-decoration: underline;
    }

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.contact-form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #555;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #e31837;
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #e31837;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .submit-btn:hover {
        background: #c41126;
    }

/* Terms & Privacy Pages */
.terms-section,
.privacy-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.terms-container,
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 40px;
}

.terms-header,
.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

    .terms-header h1,
    .privacy-header h1 {
        color: #e31837;
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .terms-header p,
    .privacy-header p {
        color: #666;
        font-size: 16px;
        margin: 0;
    }

.terms-content,
.privacy-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

    .terms-content h2,
    .privacy-content h2 {
        color: #e31837;
        margin: 25px 0 15px 0;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
        font-size: 22px;
        font-weight: 600;
    }

    .terms-content p,
    .privacy-content p {
        margin-bottom: 15px;
    }

    .terms-content ul,
    .privacy-content ul {
        margin: 15px 0 15px 20px;
        padding-left: 0;
    }

    .terms-content li,
    .privacy-content li {
        margin-bottom: 8px;
        list-style-type: none;
        position: relative;
        padding-left: 15px;
    }

        .terms-content li:before,
        .privacy-content li:before {
            content: "•";
            color: #e31837;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

.highlight {
    background: #fff8f8;
    padding: 20px;
    border-left: 4px solid #e31837;
    margin: 25px 0;
    font-style: italic;
}

.last-updated {
    text-align: center;
    font-weight: 600;
    color: #e31837;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .nav-center ul {
        gap: 15px;
    }

    .secondary-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .features {
        margin-top: 40px;
        display: flex;
        gap: 30px;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s 0.3s forwards;
    }

    .feature-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (991px and below) */
@media (max-width: 991px) {
    .hero-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 20px;
    }

    .slide {
        background: #fff;
    }

    .slide-content {
        flex-direction: column;
    }

    .features {
        justify-content: center;
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hausla-container {
        flex-direction: column;
    }

        .hausla-container .card {
            flex: none;
            width: 100%;
        }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .logo {
        width: 150px;
    }

    .nav-center {
        display: none;
    }

    .secondary-nav ul {
        display: none;
    }

    .slider-container {
        height: auto;
        min-height: auto;
    }

    .hero {
        text-align: center;
        padding: 30px 0;
    }

        .hero h1 {
            font-size: 32px;
        }

    .hero-image {
        height: 300px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content h2 {
        font-size: 20px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .hausla-section {
        padding: 60px 0;
    }

    .text-card h2 {
        font-size: 22px;
    }

    .content-wrapper p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .action-cards {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .action-card {
        min-width: auto;
        max-width: none;
        padding: 15px;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .footer-links-section {
        padding: 30px 0;
    }

    .footer-category {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

        .footer-category h4 {
            font-size: 15px;
        }

    .link-list {
        font-size: 13px;
        line-height: 1.5;
    }

        .link-list a:not(:last-child) {
            margin-right: 5px;
        }

    .back-to-top {
        padding: 15px;
        text-align: center;
    }

        .back-to-top a {
            font-size: 14px;
        }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .about-content p,
    .useful-links a,
    .contact-info p {
        font-size: 13px;
        line-height: 1.5;
    }

    .newsletter-form input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .subscribe-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 26px;
    }

    .contact-details,
    .contact-form-box {
        padding: 25px;
    }

    .terms-section,
    .privacy-section {
        padding: 40px 0;
    }

    .terms-container,
    .privacy-container {
        padding: 25px;
    }

    .terms-header h1,
    .privacy-header h1 {
        font-size: 26px;
    }

    .terms-header p,
    .privacy-header p {
        font-size: 14px;
    }

    .terms-content,
    .privacy-content {
        font-size: 14px;
        line-height: 1.6;
    }

        .terms-content h2,
        .privacy-content h2 {
            font-size: 20px;
            margin: 20px 0 12px 0;
        }

    .register-btn,
    .login-btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    .dropdown-menu {
        min-width: 180px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .logo {
        width: 120px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .feature-image {
        height: 180px;
    }

    .section-title {
        font-size: 22px;
    }

    .footer-links-section {
        padding: 25px 0;
    }

    .link-list {
        font-size: 12px;
    }

    .back-to-top a {
        font-size: 13px;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .about-content p,
    .useful-links a,
    .contact-info p {
        font-size: 12px;
    }

    .newsletter-form input {
        font-size: 12px;
        padding: 8px 10px;
    }

    .subscribe-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .terms-header h1,
    .privacy-header h1 {
        font-size: 24px;
    }

    .terms-header p,
    .privacy-header p {
        font-size: 13px;
    }

    .terms-content,
    .privacy-content {
        font-size: 13px;
    }

        .terms-content h2,
        .privacy-content h2 {
            font-size: 18px;
        }
}

/* APK Download Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 25px;
    background: #e31837;
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

    .close:hover {
        color: #ffeb3b;
    }

.modal-body {
    padding: 25px;
}

.apk-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apk-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

    .apk-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #e31837;
    }

.apk-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e31837;
}

.apk-info {
    flex: 1;
}

    .apk-info h4 {
        color: #333;
        margin: 0 0 8px 0;
        font-size: 16px;
        font-weight: 600;
    }

    .apk-info p {
        color: #666;
        margin: 0 0 15px 0;
        font-size: 14px;
        line-height: 1.4;
    }

.download-btn {
    display: inline-block;
    background: #e31837;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
}

    .download-btn:hover {
        background: #c41126;
        transform: translateY(-1px);
    }

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .apk-card {
        flex-direction: column;
        text-align: center;
    }

    .apk-logo {
        margin: 0 auto;
    }

    .apk-info p {
        margin-bottom: 10px;
    }
}
.actioncardlinks
{
    text-decoration:none;
}