/* Introduction Section */
.introduction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.intro-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: bold;
}

.intro-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.intro-button button {
    width: 100%;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #0055ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.invitation-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-box {
    flex: 1;
    margin: 10px;
    max-width: 400px;
    text-align: center;
}

.share-box h2 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #007bff;
}

.social-media-image {
    
    width: 60px;
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.social-media-image:hover {
    transform: scale(1.1);
}

.share-box p {
    font-size: 0.5em;
    margin-top: 10px;
}


.intro-button button:hover {
    background-color: #1808f1;
    color: #FFF;
    font-weight: bold;
}

.intro-illustration {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.intro-illustration img {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
}

h4,h3{
    line-height: 50px;
}

/* Features Sections */
.features {
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.feature-container {
    display: block;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-list li {
    width: 100%;
    list-style: none;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    transition: background-color 0.3s ease;
}

.feature-list li:hover {
    background-color: #f1f1f1;
}

/*.feature-list img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}*/
.feature-list li img {
    max-width: 150px;  /* Limit image size */
    height: auto;
    display: block;
    margin-right: 20px; /* Add some space between image and text */
}
.feature-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    flex: 1;  /* Make the text or table take the remaining space */
}

.feature-list th, .feature-list td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.feature-list th {
    background-color: #aad0ee;
    color: #333;
}


hr.solid {
    border-top: 2px solid #7F6000;
    margin: 20px 0;
}

/* CTA Section */
.cta {
    background-color: #999;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 8px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta button {
    width: 40%;
    padding: 15px 30px;
    font-size: 1em;
    background-color: #0055ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta button:hover {
    background-color: #1808f1;
    color: #FFF;
    font-weight: bold;
}

/* ======= Responsive Design (Mobile Friendly) ======= */
@media (max-width: 768px) {
    /* Stack the columns vertically on smaller screens */
    .introduction {
        flex-direction: column;
        align-items: center;
    }

    .intro-text, .intro-illustration {
        min-width: 100%; /* Ensure the elements stack properly */
        text-align: left;
    }

    .intro-text h1 {
        font-size: 2em; /* Smaller font size for mobile */
    }

    .cta button {
        width: 80%; /* Make buttons take more space on mobile */
    }

    /* Features Section adjustments */
    .feature-list {
        display: block; /* Stack the feature list vertically */
    }

    .feature-list li {
        flex-direction: column; /* Stack image and content vertically */
        align-items: center;
        text-align: left;
    }

    .feature-list li img {
        margin-bottom: 10px; /* Add space between image and text on mobile */
    }

    /* Adjust table responsiveness */
    .feature-list table {
        font-size: 0.9em; /* Reduce table font size slightly for mobile */
    }
}

@media (max-width: 480px) {
    /* Further font size reduction for very small screens */
    .intro-text h1 {
        font-size: 1.5em;
    }

    .cta p {
        font-size: 1em;
    }

    .cta button {
        width: 100%; /* Full-width buttons on small screens */
    }

    /* Shrink image sizes on very small screens */
    .feature-list li img {
        max-width: 100px;
    }
}