:root {
    --primary-color: rgb(0, 0, 0);
    --text-color: rgb(255, 255, 255);
    --background-color: rgb(0, 0, 0);
    --secondary-bg-color: rgb(0, 0, 0);
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Add this line to hide horizontal overflow */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    z-index: 1000;
    padding: 10px 0;  
}

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

.logo img {
    width: 200px;
    height: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
}

#hero {
    text-align: center;
    padding: 50px 0 50px; /* Reduced bottom padding */
}

h1 {
    font-family: "Sora", "Sora Placeholder", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -3px;
    line-height: 1.15em;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 20px;
    margin-top: 30px;  /* Add this line to move the title up */
}

h1 strong {
    font-weight: 700;
}

#testimonials {
    padding: 120px 15%;
    text-align: center;
    margin-top: -60px;
}

#testimonials h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author h4 {
    font-size: 18px;
    margin: 0;
}

.author p {
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--text-color);
    position: relative;
    
    /* New styles for button text */
    --font-selector: R0Y7U29yYS01MDA =;
    font-family: "Sora", "Sora Placeholder", sans-serif;
    font-weight: 500;
    line-height: 1.7em;
}

.cta-button:hover {
    animation: dash 0.3s linear forwards;
}

@keyframes dash {
    0% {
        border-style: solid;
        border-width: 2px;
    }
    100% {
        border-style: dashed;
        border-width: 3px;
        transform: scale(1.05);
    }
}

.users-count {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

#features {
    padding: 30px 15%;  /* Reduced top padding from 80px to 50px */
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.feature:last-child {
    margin-bottom: 0;  /* Remove margin from the last feature */
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-image, .feature-text {
    flex: 1;
    padding: 0 20px;
}
.feature-image img {
    max-width: 58%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 1700px) {

.feature-image img {
    max-width: 73%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}
}
.feature-text h3 {
    font-family: "Sora", "Sora Placeholder", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.4em;
    text-align: start;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

footer {
    background-image: url('images/prepprfooter.webp');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: white;
    position: relative; /* Add this line */
}

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

.footer-left .logo img {
    width: 200px;
    height: auto;
}

.footer-right {
    text-align: right;
}

.footer-right p {
    margin-bottom: 10px;
}

.app-screenshots {
    position: relative;
    height: 700px;
    margin-top: 0px;
    padding-top: 30px;
    overflow: hidden; /* Add this line to hide both horizontal and vertical overflow */
}

.screenshot {
    position: absolute;
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.screenshot.left {
    left: 37%;
    transform: translateX(-60%) rotate(-12deg);
    z-index: 1;
}

.screenshot.center {
    left: 47%;
    transform: translateX(-30%);
    z-index: 3;
}

.screenshot.right {
    left: 56%;
    transform: translateX(0%) rotate(12deg);
    z-index: 2;
}
.footer-right nav ul {
    list-style-type: none;
    padding: 0;
}

#privacy-policy, #terms-of-service {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

#privacy-policy .content, #terms-of-service .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

#privacy-policy h1, #terms-of-service h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

#privacy-policy h2, #terms-of-service h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

#privacy-policy p, #privacy-policy ul, #terms-of-service p, #terms-of-service ul {
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 300;
}

#privacy-policy ul, #terms-of-service ul {
    padding-left: 20px;
}

#privacy-policy li, #terms-of-service li {
    margin-bottom: 10px;
    font-weight: 300;
}

#privacy-policy strong, #terms-of-service strong {
    font-weight: 400;
}
.footer-right nav ul li {
    display: inline;
    margin-left: 20px;
}

.footer-right nav ul li a {
    color: white;
    text-decoration: underline;
}

.social-media {
    margin-top: 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .container, nav, .footer-content {
        max-width: 95%;
    }
    .feature-image img {
        max-width: 70%;
        height: auto;
        border-radius: 20px;
        display: block;
        margin: 0 auto;
    }
    #features {
        padding: 30px 5%;
    }

    #testimonials {
        padding: 120px 15%;
        text-align: center;
        margin-top: -60px;
    }

    #testimonials h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .testimonials-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .testimonial {
        flex: 1;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 30px;
        text-align: left;
        transition: all 0.3s ease;
    }

    .testimonial:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .author {
        display: flex;
        align-items: center;
    }

    .author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }

    .author h4 {
        font-size: 18px;
        margin: 0;
    }

    .author p {
        font-size: 14px;
        margin: 0;
        opacity: 0.7;
    }

    #privacy-policy, #terms-of-service {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    #privacy-policy .content, #terms-of-service .content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    #privacy-policy h1, #terms-of-service h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    #privacy-policy h2, #terms-of-service h2 {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    #privacy-policy p, #privacy-policy ul, #terms-of-service p, #terms-of-service ul {
        margin-bottom: 15px;
        line-height: 1.6;
        font-weight: 300;
    }

    #privacy-policy ul, #terms-of-service ul {
        padding-left: 20px;
    }

    #privacy-policy li, #terms-of-service li {
        margin-bottom: 10px;
        font-weight: 300;
    }

    #privacy-policy strong, #terms-of-service strong {
        font-weight: 400;
    }

    .app-screenshots {
        position: relative;
        height: 700px;
        margin-top: 0px;
        padding-top: 30px;
        overflow: hidden; /* Add this line to hide both horizontal and vertical overflow */
    }

    .screenshot {
        position: absolute;
        width: 350px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }


}

@media (max-width: 992px) {
    h1 {
        font-size: 48px;
    }

    .feature-text h3 {
        font-size: 32px;
    }

    .app-screenshots {
        height: 600px;
        padding-top: 20px;
    }

    .screenshot {
        width: 270px;
    }

    .screenshot.left {
        transform: translateX(-280px) rotate(-12deg);
    }

    .screenshot.center {
        transform: translateX(-125px);
    }

    .screenshot.right {
        transform: translateX(30px) rotate(12deg);
    }

    #hero {
        padding: 50px 5% 100px;
    }

    #testimonials h2 {
        font-size: 48px;
    }

    .feature-image img {
        max-width: 80%;
    }

    /* Center customer love section */
    #testimonials {
        text-align: center;
        padding: 60px 5%; /* Adjust padding for better spacing */
    }

    #testimonials h2 {
        margin-bottom: 30px; /* Increase space below the heading */
    }

    .testimonials-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 80%; /* Limit width of testimonials */
        margin-bottom: 30px; /* Add space between testimonials */
    }

    /* Ensure footer is visible */
    footer {
        position: relative;
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-content {
        position: relative;
        z-index: 2;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .feature {
        flex-direction: column-reverse;
        margin-bottom: 45px;
    }

    .feature-reverse {
        flex-direction: column-reverse;
    }

    .feature-image, .feature-text {
        padding: 0 40px;
        text-align: center;
    }

    .feature-image img {
        max-width: 94.6%; /* Keep this value unchanged for mobile */
        margin-top: 20px;
    }

    .feature-text h3 {
        font-size: 28px;
        text-align: center;
    }

    .app-screenshots {
        height: 400px;
    }

    .screenshot {
        width: 220px;
    }

    .screenshot.left {
        transform: translateX(-220px) rotate(-12deg);
    }

    .screenshot.center {
        transform: translateX(-100px);
    }

    .screenshot.right {
        transform: translateX(20px) rotate(12deg);
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial {
        flex: 1;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 15px;
        text-align: left;
        transition: all 0.3s ease;
    }

    .testimonial:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial p {
        font-size: 12.8px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .author {
        display: flex;
        align-items: center;
    }

    .author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }

    .author h4 {
        font-size: 14.4px;
        margin: 0;
    }

    .author p {
        font-size: 11.2px;
        margin: 0;
        opacity: 0.7;
    }

    #privacy-policy, #terms-of-service {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    #privacy-policy .content, #terms-of-service .content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    #privacy-policy h1, #terms-of-service h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    #privacy-policy h2, #terms-of-service h2 {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    #privacy-policy p, #privacy-policy ul, #terms-of-service p, #terms-of-service ul {
        margin-bottom: 15px;
        line-height: 1.6;
        font-weight: 300;
    }

    #privacy-policy ul, #terms-of-service ul {
        padding-left: 20px;
    }

    #privacy-policy li, #terms-of-service li {
        margin-bottom: 10px;
        font-weight: 300;
    }

    #privacy-policy strong, #terms-of-service strong {
        font-weight: 400;
    }

    footer {
        padding: 30px 0; /* Reduced padding */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        display: none; /* Hide the logo */
    }

    .footer-right {
        text-align: center;
        width: 100%; /* Ensure full width */
    }

    .footer-right nav {
        display: flex;
        justify-content: center;
    }

    .footer-right nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
        padding-bottom: 20px; /* Add padding at the bottom of the nav list */
    }

    .footer-right nav ul li {
        margin: 10px 0;
        text-align: center; /* Ensure text is centered */
    }

    .footer-right nav ul li:last-child {
        margin-bottom: 20px; /* Add extra margin to the last list item */
    }

    .footer-right nav ul li a {
        display: inline-block;
        font-size: 14px; /* Reduce font size */
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for darkness */
        z-index: 1;
    }

    .footer-content {
        position: relative;
        z-index: 2;
    }

    #testimonials {
        padding-bottom: 67.2px; /* Increased from 48px (40% increase) */
    }

    footer {
        margin-top: -33.6px; /* Adjust this value if there's a negative margin */
    }
}

@media (max-width: 430px) {
    footer {
        padding: 20px 0 30px; /* Increase bottom padding */
    }

    .footer-right nav ul {
        padding-bottom: 30px; /* Increase padding at the bottom of the nav list */
    }

    .footer-right nav ul li:last-child {
        margin-bottom: 30px; /* Increase margin for the last list item */
    }

    .footer-right nav ul li a {
        font-size: 12px; /* Further reduce font size for very small screens */
    }

    .footer-right p {
        font-size: 12px; /* Reduce font size for other footer text */
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .app-screenshots {
        height: 400px;
        padding-top: 10px;
    }

    .screenshot {
        width: 190px;
    }

    .screenshot.left {
        transform: translateX(-180px) rotate(-12deg);
    }

    .screenshot.center {
        transform: translateX(-75px);
    }

    .screenshot.right {
        transform: translateX(10px) rotate(12deg);
    }

    #features {
        padding: 30px 0;
    }

    .feature-image img {
        max-width: 79.2%; /* Increased from 72% to 79.2% (10% increase) */
    }

    .feature-text h3 {
        font-size: 24px;
    }

    #testimonials h2 {
        font-size: 32px;
    }

    .logo img {
        width: 160px;
    }

    header .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    #hero {
        padding: 30px 10% 60px;
    }

    #testimonials {
        padding-top: 60px;
    }

    #testimonials {
        padding-bottom: 50.4px; /* Increased from 36px (40% increase) */
    }

    footer {
        margin-top: -25.2px; /* Adjust accordingly */
    }
}

.mobile-break {
    display: none;
}

@media (max-width: 600px) {
    .mobile-break {
        display: inline;
    }
}

#testimonials h2 {
    font-family: "Sora", "Sora Placeholder", sans-serif;
    font-size: 32px; /* Half of 64px */
    font-style: normal;
    font-weight: 400;
    letter-spacing: -1.5px; /* Half of -3px */
    line-height: 1.15em;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    margin-bottom: 20px; /* Half of 40px */
    margin-top: 15px; /* Half of 30px */
}

#testimonials h2 strong {
    font-weight: 700;
}

.header-cta .mobile-text {
    display: none;
}

@media (max-width: 600px) {
    .header-cta .desktop-text {
        display: none;
    }

    .header-cta .mobile-text {
        display: inline;
    }

    header .cta-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    header .cta-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    #privacy-policy .content,
    #terms-of-service .content {
        margin-top: -30px;
        font-size: 85%; /* Reduces font size by 15% */
    }

    #privacy-policy h1,
    #terms-of-service h1 {
        font-size: 2.2em; /* Slightly reduce the main title size */
        font-weight: 500; /* Reduce boldness from default 700 to 500 */
    }

    #privacy-policy h2,
    #terms-of-service h2 {
        font-size: 1.7em; /* Slightly reduce the section title size */
    }

    #privacy-policy p,
    #privacy-policy ul,
    #terms-of-service p,
    #terms-of-service ul {
        font-size: 1em; /* Keep the paragraph and list text size relative to the new base size */
    }
}

