body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background: radial-gradient(circle, #533DB7, #473469);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: absolute;
    top: 20px;
    right: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 90%;
    max-width: 1200px;
    padding-top: 100px;
    flex-wrap: wrap;
}

.content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.description {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.image-container {
    flex: 1;
    position: relative;
    max-width: 300px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container img {
    width: 100%;
    border-radius: 30px;
}

.app-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
}

.app-links img {
    width: 300px;
    cursor: pointer;
}

/* Review Section Styles */
.reviews-section {
    width: 100%;
    padding: 50px 20px;
    background-color: #f7f9fc;
    text-align: center;
    color: #333;
}

.reviews-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #4c4c9d;
    margin-bottom: 30px;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.review-card .quote {
    color: #6e44ff;
    font-size: 2rem;
    position: absolute;
    top: 10px;
    left: 10px;
}

.review-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    padding-left: 25px;
}

.stars {
    font-size: 1.1rem;
    color: #6e44ff;
    padding-left: 25px;
    margin-top: 10px;
}

.reviewer-name {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    padding-left: 25px;
    margin-bottom: 10px;
    position: absolute;
    bottom: 10px;
    right: 40px;
}

/* FAQ Section Styles */
.faq-section {
    width: 100%;
    padding: 50px 20px;
    background-color: #eef1f7;
    color: #333;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.faq-title {
    font-size: 4rem;
    font-weight: 800;
    color: black;
    line-height: 1;
    width: 600px;
}

.faq-title span {
    color: #533DB7;
}

.faq-container {
    max-width: 800px;
    flex: 1;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #533DB7;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question-icon {
    transform: rotate(0);
}

/* Footer Section Styles */
.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    color: #333;
    display: flex;
    justify-content: space-between; /* Updated to evenly space the content */
    align-items: flex-start;
    margin-top: 50px;
    padding-left: 25%;
    flex-wrap: wrap;
    padding-bottom: 150px;
}

.footer .footer-column {
    flex: 1;
    max-width: 200px;
}

.footer .footer-column h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #533DB7;
    margin-bottom: 20px;
}

.footer .footer-column a {
    display: block;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer .footer-column a:hover {
    color: #533DB7;
}

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

.footer .footer-social .footer-social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px; /* To evenly space out icons horizontally */
}

.footer .footer-social .social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: #eef1f7;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer .footer-social .social-link:hover {
    background-color: #533DB7;
}

.footer .footer-social svg {
    width: 20px;
    height: 20px;
    fill: #471CFF;
    transition: fill 0.3s ease;
}

.footer .footer-social .social-link:hover svg {
    fill: #ffffff;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Flexible for all screens */
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px; /* Optional: Limit max width */
    margin: 0 auto; /* Center grid on larger screens */
    justify-content: center;
}

/* Responsive Fix for Smaller Screens */
@media (max-width: 600px) {
    .blog-posts-grid {
        grid-template-columns: 1fr; /* Single column layout on small screens */
        gap: 15px; /* Slightly smaller gap for smaller screens */
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
    }
}

/* Blog Post Item */
.blog-section {
    /* background: radial-gradient(circle, #533DB7, #473469); */
    background-color: #fff;
    width: 100%;
}

.blog-section h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.blog-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-post a {
    text-decoration: none;
    color: #333;
}


/* Blog Post Image */
.blog-post img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #f0f0f0;
}

/* Blog Post Content */
.blog-post-content {
    padding: 20px;
}

.blog-post-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-post-content h3:hover {
    color: #533DB7;
}

.blog-post-content p {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
}