/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
}

.logo {
    margin-bottom: 20px;
}

.logo-img {
    max-height: 48px;
    width: auto;
    display: block;
}
/* Navigation */
nav ul {
    list-style: none;
    text-align: right;
}

nav li {
    margin-bottom: 15px;
}

nav a {
    text-decoration: none;
    color: #e86aaa;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 48px 20px 64px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* home */
.hero {
    text-align: center;
    padding: 20px 0 60px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.hero p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 32px;
}

.hero img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

.intentional {
    display: block;
    padding-bottom: 40px;
}

.intentional-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.intentional-text p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.intentional-text button {
    background: black;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.intentional-img img {
    width: 100%;
    border-radius: 20px;
    margin-top: 32px;
}

/* about */
.about h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.about-row {
    display: block;
}

.about-row img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 24px;
}

.about-row h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-row p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-section {
    margin-top: 48px;
}

.about-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-section p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-section ul {
    list-style: none;
}

.about-section li {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* features */
.features-page {
    text-align: center;
}

.features-page h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-cards {
    display: block;
}

.feature-card {
    margin-bottom: 40px;
    text-align: left;
}

.feature-card img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.feature-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

/* plans */
.plans-page h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.plan-cards {
    display: block;
}

.plan-box {
    border: 1px rgba(236, 180, 221, 0.562);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    background: rgba(236, 180, 221, 0.562);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.plan-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.plan-type {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.price span {
    font-size: 14px;
    color: #666666;
    font-weight: normal;
}

.plan-box ul {
    list-style: none;
    margin-bottom: 24px;
}

.plan-box li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.plan-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
}

.plan-box button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.btn-outline {
    background: white;
    color: black;
    border: 1px solid #cccccc;
}

.btn-dark {
    background: black;
    color: white;
    border: none;
}

.plan-box a.btn-outline,
.plan-box a.btn-dark {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

/* login and sign up */
.login-page {
    text-align: center;
}

.login-box {
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(236, 180, 221, 0.562);
    border-radius: 4px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background:rgba(236, 180, 221, 0.562);
}

.-box h1 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.login-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-size: 16px;
}

.login-box button {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
}

.login-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
}

.login-switch a {
    color: black;
}

/* testimonials */
.testimonials {
    flex: 1;
    padding: 48px 20px 64px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.testimonials h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.testimonials-intro {
    color: #666666;
    margin-bottom: 40px;
}

.slideshow {
    display: block;
}

.testimonial-box {
    background: white;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 28px 24px;
    text-align: left;
    margin-bottom: 24px;
}

.testimonial-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-details span {
    font-size: 14px;
    color: #666666;
}

.testimonial-details .stars {
    display: flex;
    gap: 6px;
    padding-top: 8px;
}

.testimonial-details .stars i {
    color: #e86aaa;
    font-size: 16px;
}
/* footer */
footer {
    padding: 32px 20px;
    border-top: 1px solid #eeeeee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

footer a {
    text-decoration: none;
    color: #666666;
    font-size: 14px;
}

footer a:hover {
    color: black;
}

.socials {
    margin-left: auto;
    display: flex;
    gap: 16px;
    font-size: 20px;
}

.socials i {
    color: #666666;
}

.socials i:hover {
    color: black;
}
/* tablet styles */

@media (min-width: 600px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
    }

    nav ul {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    nav li {
        margin-bottom: 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .intentional {
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .intentional-text {
        width: 50%;
    }

    .intentional-img {
        width: 50%;
    }

    .intentional-img img {
        margin-top: 0;
    }
/* about */
    .about-row {
        display: flex;
        gap: 48px;
        align-items: center;
    }

    .about-row img {
        width: 50%;
        margin-bottom: 0;
    }

    .about-text {
        width: 50%;
    }

    .feature-cards {
        display: flex;
        gap: 24px;
        justify-content: center;
    }

    .feature-card {
        width: 33%;
        margin-bottom: 0;
    }
/* plans */
    .plan-cards {
        display: flex;
        gap: 24px;
    }

    .plan-box {
        width: 33%;
        margin-bottom: 0;
    }

.plan-box{
    background:rgba(236, 180, 221, 0.562);
    border-radius:15px;
    padding:20px;
    margin-bottom:25px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.price{
    font-size:35px;
    font-weight:bold;
    margin:20px 0;
    color:#a44b77;
}

.price span{
    font-size:1rem;
    color:#777;
}
    .slideshow {
        display: flex;
        gap: 24px;
    }
/* testimonials */

    .testimonial-box {
        width: 33%;
        margin-bottom: 0;
    }

    .testimonials h1,
    .features-page h1,
    .plans-page h1,
    .about h1 {
        font-size: 40px;
    }
}
/* desktop styles */
@media only screen and (min-width: 992px) {
     header{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    nav ul{
        gap:30px;
    }

    footer{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }
}