/* Updated Splash Screen Style with white background and black text */
body {
    margin: 0;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
    /* White background */
    color: #000000;
    /* Black text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

h3 {
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 0.7rem;
}

h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.5;
}

a {
    color: #1DA1F2;
    /* Blue link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.pricing-container {
    width: 100%;
    display: block;
    margin-top: 2rem;
}

/* Footer Styles */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    margin-top: 40px;
    font-size: 1rem;
    display: flex;
    justify-content: center; /* Ensures content is centered */
    align-items: center;
    flex-direction: column;
}

.site-footer p {
    margin: 0;
}

.footer-secondary-links {
    font-size: 0.85rem;
    color: #dddddd;
    /* Light gray for secondary text */
    margin-top: 10px;
}

.footer-link {
    color: #f25d1d;
    /* Blue link color */
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

table {
    width: 100%; /* Full width of the container */
    border-collapse: collapse; /* Removes space between borders */
    margin: 20px 0; /* Adds margin around the table */
}

th, td {
    padding: 12px; /* Adds padding to table cells */
    text-align: center; /* Centers text in both headings and data cells */
    border: 1px solid #b0adad; /* Adds black borders around cells */
}

th {
    background-color: #000000; /* Black background for the header */
    color: #ffffff; /* White text color for the headings */
    text-transform: uppercase; /* Capitalizes the header text */
}

td {
    background-color: #ffffff; /* White background for data cells */
    color: #000000; /* Black text color for data cells */
}

table tr:nth-child(even) td {
    background-color: #f2f2f2; /* Light grey background for even rows */
}
  

div.testimonials {
    max-width: 600px;
    /* Limits the width to prevent excessive stretching */
    margin: 0 auto;
    /* Centers the container */
    padding: 20px;
    /* Light background for readability */
    border-radius: 8px;
    /* Slightly rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

div.testimonials p {
    font-size: 16px;
    /* Readable font size */
    line-height: 1.6;
    /* Improves readability */
    margin-bottom: 15px;
    /* Space between testimonials */
}

div.testimonials strong {
    color: #333;
    /* Darker text for names */
    font-weight: bold;
}