* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4431c;
    text-decoration: none;
}

.logo-icon {
    background-size: cover;
    background-position: center;
    width: 120px;
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d4431c;
    transform: translateY(-2px);

}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #f4c430, #d4431c);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a.active {
    color: #d4431c !important;
    font-weight: 600;
    transform: translateY(-2px);
    position: relative;
}

.nav-menu a.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f4c430;
    border-radius: 50%;
}

.nav-menu a.active::after {
    width: 100% !important;
    background: linear-gradient(135deg, #f4c430, #d4431c) !important;
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hide menu list by default */
.mobile-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #333;
}

.mobile-menu li {
    border-bottom: 1px solid #444;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
}

.hero {
    background-image: url('../images/image1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

@keyframes gradientShift {

    0%,
    100% {
        background: linear-gradient(45deg, rgba(212, 67, 28, 0.3), rgba(244, 196, 48, 0.3));
    }

    50% {
        background: linear-gradient(225deg, rgba(244, 196, 48, 0.3), rgba(212, 67, 28, 0.3));
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px;
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.search-input {
    font-family: 'Poppins', sans-serif !important;
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    background: transparent;
    color: #333;
}

.search-btn {
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    color: white;
    font-size: 1.0rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 67, 28, 0.4);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.0rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 67, 28, 0.3);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 67, 28, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    min-height: 70vh;
    height: auto;
    background: linear-gradient(135deg, rgba(212, 67, 28, 0.8), rgba(244, 196, 48, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f4c430" width="1200" height="800"/><path fill="%23d4431c" d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z"/><circle fill="%23fff" opacity="0.1" cx="200" cy="150" r="100"/><circle fill="%23fff" opacity="0.1" cx="800" cy="100" r="80"/><circle fill="%23fff" opacity="0.1" cx="1000" cy="200" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 110px 150px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Main Content */
.main-content {
    background: linear-gradient(135deg, #f4c430, #ffd700);
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.main-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(212, 67, 28, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.main-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 196, 48, 0.1), transparent);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact Form Specific Styles */
.contact-card {
    width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px 10px;
    overflow: hidden;
    background: white;
    color: black;
}

.login-card {
    width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px 10px;
    overflow: hidden;
    background: white;
    color: black;
    margin: 0 auto;
}

#contact-form .form-control,
#login-form .form-control {
    height: 30px;
    font-size: 1.1rem;
    padding: 12px 16px;
}

#login-form textarea.form-control,
#contact-form textarea.form-control {
    height: auto;
    min-height: 160px;
}

#contact-form label {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
}

#login-form .btn-lg,
#contact-form .btn-lg {
    padding: 14px 30px;
    font-size: 1.1rem;
}

.label-colon {
    display: inline-block;
    width: 150px;
    font-weight: 500;
    text-align: right;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.label-colon::after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0;
}

#contact-form .form-group {
    display: flex;
    align-items: center;
    width: 900px;
    padding-left: 200px;
}

#login-form input.form-control {
    width: 300px;
}

.form-group .form-control {
    flex: 1;
    min-width: 0;
}

#contact-form input.form-control,
#contact-form textarea.form-control,
#login-form input.form-control,
#login-form textarea.form-control {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.02em;
}

.contact-header {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.form-control:focus {
    border-color: #f4c430;
    box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50px;
    padding: 15px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 67, 28, 0.3);
}

.btn-primary:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 67, 28, 0.4);
    background: linear-gradient(135deg, #f4c430, #d4431c);
}

.alert-success {
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1), rgba(212, 67, 28, 0.1));
    border: 1px solid #f4c430;
    color: #d4431c;
}

.alert-danger {
    background: rgba(212, 67, 28, 0.1);
    border: 1px solid #d4431c;
    color: #d4431c;
}

.info-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 196, 48, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    margin: 0 auto 15px;
}

.main-body {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.05), rgba(255, 255, 255, 0.8));
    min-height: 70vh;
}

.password-wrapper {
    position: relative;
    display: inline-block;
    flex: 1;
}

.password-wrapper .form-control {
    padding-right: 45px !important;
}

.password-wrapper .password-toggle {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: black;
    z-index: 10;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.password-wrapper .password-toggle:hover {
    color: #d4431c;
}

.password-wrapper .password-toggle i {
    pointer-events: none;
}

/* Footer */
.footer {
    background-color: rgba(245, 245, 245, 0.968);
    color: #d4431c !important;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #f4c430;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: #d4431c;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Section Specific Styles */
.about-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-legal-container {
    margin-bottom: 40px;
    padding: 40px;
    text-align: justify;
}

.legal-text {
    color: black;
    position: relative;
    line-height: 1.5em;
    z-index: 2;
    margin: 0;
}

.intro-text-container {
    align-items: center;
    justify-content: center;
}

.intro-text {
    text-align: justify;
    color: black;
    position: relative;
    z-index: 2;
    margin: 0;
}

.intro-text ul {
    list-style-position: inside;
    /* bullets align with text */
}

.intro-text li {
    padding-left: 20px;
}

.about-container {
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 30px;
}

.guide-image {
    flex: 0 0 300px;
    text-align: center;
}

.guide-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.guide-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.carousel-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4431c, #f4c430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.slide-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #d4431c, #f4c430);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(212, 67, 28, 0.3);
}

.carousel-nav:hover {
    transform: translateY(-50%) translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 67, 28, 0.4);
    background: linear-gradient(135deg, #f4c430, #d4431c);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #d4431c;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #f4c430;
}

/* Search Results Styles */
.search-results {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.search-results-content {
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.search-results-header {
    background: linear-gradient(135deg, #d4431c, #f4c430);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-results-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-search {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.close-search:hover {
    transform: scale(1.1);
}

.search-results-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-item:hover {
    border-color: #d4431c;
    box-shadow: 0 5px 15px rgba(212, 67, 28, 0.1);
    transform: translateY(-2px);
}

.search-result-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4431c;
    margin-bottom: 8px;
}

.search-result-description {
    color: #666;
    line-height: 1.6;
}

.search-result-category {
    display: inline-block;
    background: linear-gradient(135deg, #f4c430, #d4431c);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-loading {
    text-align: center;
    padding: 40px;
}

.search-loading i {
    font-size: 2rem;
    color: #d4431c;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========== SIMPLIFIED RESPONSIVE MEDIA QUERIES ========== */

/* TABLET (768px to 991px) */
@media (max-width: 991px) {
    .nav-container {
        height: 70px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 100px;
        height: 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .content {
        padding: 80px 50px;
    }

    .main-content h2 {
        font-size: 2.2rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }

    .features {
        padding: 80px 0;
    }

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

    .contact-card {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }

    #contact-form .form-group {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }

    .carousel-title {
        font-size: 1.8rem;
    }

    .carousel-slide img {
        height: 400px;
    }

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

/* PHONE (767px and below) */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* height of your header */
        right: 0;
        background: white;
        width: 100%;
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: center;
    }

    /* When active, show it */
    .nav-menu.show {
        display: flex;
    }

    /* Optional — style links for mobile */
    .nav-menu a {
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
    }

    .nav-menu a:hover {
        background: #f5f5f5;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }

    .logo-icon {
        width: 80px;
        height: 50px;
    }

    .hero {
        height: 80vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .search-container {
        flex-direction: column;
        gap: 15px;
        max-width: 90%;
        padding: 20px;
        border-radius: 20px;
    }

    .search-input {
        padding: 12px 15px;
        text-align: center;
    }

    .search-btn {
        border-radius: 10px;
        padding: 12px 25px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .password-wrapper {
        position: relative;
        display: inline;
        flex: 1;
    }

    .content {
        padding: 60px 20px;
    }

    .main-content {
        padding: 60px 0;
    }

    .main-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .main-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Contact form responsive */
    .contact-card {
        width: 95%;
        margin: 0 auto;
        padding: 20px;
    }

    .login-card {
        width: 95%;
        padding: 20px;
    }

    #contact-form .form-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .label-colon {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .label-colon::after {
        display: none;
    }

    #contact-form .form-control,
    #login-form .form-control {
        width: 100%;
        height: 45px;
        font-size: 1rem;
    }

    #login-form input.form-control {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
    }

    /* About section responsive */
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .guide-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        padding: 10px;
    }

    .guide-image img {
        height: 300px;
    }

    .intro-text-container {
        height: auto;
        padding-top: 10%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .slide-caption {
        padding: 20px 15px 15px;
    }

    .slide-caption h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .about-section {
        border-radius: 10px;
        margin: 10px;
    }

    /* Footer responsive */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    /* Search results responsive */
    .search-results-content {
        width: 95%;
        margin: 20px;
    }

    .search-results-header {
        padding: 15px 20px;
    }

    .search-results-header h3 {
        font-size: 1.3rem;
    }

    .search-results-body {
        padding: 20px;
    }

    .search-result-item {
        padding: 15px;
    }

    .search-result-title {
        font-size: 1.1rem;
    }
}