/* Global styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

h1, h2, h3 {
    margin: 0 0 20px;
}

p {
    margin: 0 0 20px;
}

a {
    text-decoration: none;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.error {
    color: red;
    font-size: 1em;
    margin-top: 10px;
}
.success {
    color: green;
    font-size: 1em;
    margin-top: 10px;
}

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

nav a {
    margin: 0 10px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #38b000;
}

/* Section styles */
.section {
    padding: 80px 20px;
}

.section-1 {
    background-color: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.section-1 .image-container {
    flex: 1;
    max-width: 36%;
    text-align: right;
    padding-right: 129px;
}

.section-1 .image-container img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.section-1 .text-container {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.section-1 h1 span {
    color: #38b000;
}

.section-2 {
    text-align: center;
}

.section-3 {
    text-align: center;
    background-color: #343a40;
    color: white;
    padding-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 18px;
}

.features-list li::before {
    content: "✔";
    color: #38b000;
    margin-right: 10px;
    font-weight: bold;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    background-color: #38b000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2d9100;
}

/* Mobile styles */
@media (max-width: 768px) {
    .section-1 {
        flex-direction: column;
        text-align: center;
    }

    .section-1 .image-container, .section-1 .text-container {
        margin-top: 20px;
        max-width: 72%;
        padding-right: 0;
    }

    .section-1 .text-container {
        padding: 0;
    }

    .mobile-hidden {
        display: none;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        font-size: small;
    }

    footer {
        background: #FFFFFF;
        color: #333333;
        border-top: solid #cfcfcf;
    }
}

/* Pricing cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 280px;
    text-align: center;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    margin-bottom: 5px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #38b000;
}

.contact-section a {
    text-decoration: underline;
    color: #38b000;
}
.footer-content {
    padding-top: 70px;
    font-size: 14px;
    color: #777777;
    z-index: 1000;
}

.footer-content a {
    text-decoration: underline;
}

.legal-popin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popin-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.popin-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.popin-content p, .popin-content ul {
    font-size: 16px;
    color: #555;
    text-align: left;
    margin-bottom: 15px;
}

.popin-content ul {
    padding-left: 20px;
    list-style: none;
}

#open-legal-popin {
    color: #797979;
}

#close-popin {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

#close-popin:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}
