body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f3eb;
    color: #333;
    padding-top: 100px;
    opacity: 1;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #f7f3eb 32px), repeating-linear-gradient(#ffffff55, #ffffff);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header .logo p {
    margin: 2px -2px -4px 12px;
    font-size: 12px;
}

nav {
    display: flex;
    align-items: center;
    color: #000;
    padding: 10px 20px;
}

nav .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav .nav-links li {
    margin-left: 20px;
}

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

nav .nav-links a:hover {
    color: #ff6f61;
}

.language-switcher {
    margin-left: 20px;
}

#language-select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .tagline, .taglinetop {
        display: none;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    nav {
        width: 100%;
    }

    .nav-links {
        justify-content: flex-end;
    }

    .nav-links li {
        display: none;
    }

    .nav-links li:nth-child(2) {
        display: block;
        margin-left: auto;
    }

    .nav-links li:nth-child(2) a {
        padding: 8px 16px;
        background-color: #ff6f61;
        color: #fff;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }

    .nav-links li:nth-child(2) a:hover {
        background-color: #e5574d;
    }

    .language-switcher {
        display: none !important;
    }
}

h2{
text-align: center;

}

/* Underline effect */
nav .nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
}

/* Button effect for the last item (assuming it's a CTA) */
nav .nav-links li:last-child a {
    padding: 8px 16px;
    border: 2px solid #ff6f61;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav .nav-links li:last-child a:hover {
    background-color: #ff6f61;
    color: #ffffff;
}

nav .nav-links li:last-child a::after {
    display: none;
}
.container {
    width: 60%;
    margin: auto;
    overflow: hidden;
}
#showcase {
    color: #333;
    text-align: center;
    background-image: url('path/to/your/background-image.jpg'); /* Optional: Add a background image */
    background-size: cover;
    background-position: center;
}

#showcase .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

#showcase h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ff6f61;
    font-weight: 700;
    /* Text shadow removed */
}

#showcase p {
    font-size: 0.9em;
    margin-bottom: 8px;
    margin-left: 18px;
    color: #9d9b9b;
}

.signup-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6f61;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.signup-btn:hover {
    background-color: #e5574d;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.signup-btn-subtitle {
    display: block;
    font-size: 0.7em;
    margin-top: 5px;
    opacity: 0.9;
}

.signup-btn-subtitle s {
    color: #8f3c3c;
}

#features, #faq {
    padding: 20px 0;
}
.feature, .faq-item {
    background: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 16px rgb(241 230 209);
}
.feature {
    display: flex;
    flex-direction: column;
}
.feature-header {
    display: flex;
    align-items: center;
}
.feature i {
    font-size: 24px;
    margin-right: 10px;
    color: #ff6f61;
}
.feature h3 {
    margin: 0;
}
.feature p {
    margin: 10px 0 0 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.signup-btn {
    display: block;
    width: 200px;
    margin: 41px auto 31px;
    padding: 10px;
    background: #ff6f61;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
footer {
    background-color: #ff6f61;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff; /* Changed to white for better contrast */
    font-weight: bold; /* Made bold for better visibility */
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ffffff; /* Changed to white for better readability */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #333; /* Darker color on hover for contrast */
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff; /* Changed to white for visibility */
}

@media (max-width: 768px) {
    nav .nav-links {
        display: none; /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 0;
    }

    nav .nav-links.show {
        display: flex;
    }

    nav .nav-links li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    nav .hamburger {
        display: block;
    }

    .taglinetop {
        display: none;
    }

    .container {
        width: 90%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    #showcase h1 {
        font-size: 2.5em;
    }

    .signup-btn {
        padding: 12px 24px;
        font-size: 1em;
    }

    .feature, .faq-item {
        margin: 10px;
        padding: 15px;
    }
}

.logo  a {
    color: #ff6f61; 
    text-decoration: none; /* This removes the underline from the link */
    transition: color 0.3s ease; /* This adds a smooth color transition on hover */
   
}

.logo  a:hover {
    color: #ff6f61; /* This changes the color when hovering over the link. Adjust the color as needed */
}

.user-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 30px;
}

.user-avatars {
    display: flex;
    margin-right: 15px;
}

.user-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -15px;
}

.rating {
    color: #fff;
    text-align: left;
}

.stars {
    color: gold;
    font-size: 20px;
    margin-bottom: 5px;
    margin-left: 18px;
}

.rating p {
    margin: 0;
    font-size: 14px;
}


.tagline {
    font-size: 1.3em !important
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

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

.nav-links a:hover {
    color: #ff6f61;
}

@media screen and (max-width: 768px) {
    .tagline, .taglinetop {
        display: none;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    nav {
        width: 100%;
    }

    .nav-links {
        justify-content: flex-end;
    }

    .nav-links li {
        display: none;
    }

    .nav-links li:nth-child(2) {
        display: block;
        margin-left: auto;
    }

    .nav-links li:nth-child(2) a {
        padding: 8px 16px;
        background-color: #ff6f61;
        color: #fff;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }

    .nav-links li:nth-child(2) a:hover {
        background-color: #e5574d;
    }

    .language-switcher {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .taglinetop {
        display: none;
    }



    .logo {
        width: 600px;
        text-align: center;
    }
}

.qr-info {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

#showcase .qr-info {
    color: #9d9b9b;
    margin-top: 15px;
}

.language-switcher {
    margin-left: 20px;
}

#language-select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .language-switcher {
        display: block !important;
        margin-left: 0;
        margin-top: 10px;
    }
}

.page-container {
    background-color: #f7f3eb;
    padding: 40px 20px;
    min-height: calc(100vh - 100px - 300px); /* Adjust based on your header and footer heights */
}

.content-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .content-container {
        padding: 20px;
    }
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: flex;
        justify-content: flex-end;
    }

    .nav-links li {
        display: none;
    }

    .nav-links li:nth-last-child(2) {
        display: block;
        margin-left: auto;
    }

    .nav-links li:nth-last-child(2) a {
        padding: 8px 16px;
        background-color: #ff6f61;
        color: #fff;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }

    .nav-links li:nth-last-child(2) a:hover {
        background-color: #e5574d;
    }

    .language-switcher {
        display: none !important;
    }
}