/* Basic Styles */
:root {
    --primary-color: #4A90E2;
    --accent-color: #50E3C2;
    --text-color: #333333;
    --background-color: #F5F7FA;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #3d7ace;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
    background-color: #45c0a9;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--background-color), var(--white));
    padding: 100px 0;
    text-align: center;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.small-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    background: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        text-align: center;
    }

    .nav-links a.btn-primary {
        display: none; /* Hide 'Sign Up' button on small screens */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

/* Arrow Icon Styling */
.arrow-icon {
    margin-left: 8px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-2px); /* Adjust position slightly */
    transition: transform 0.3s ease;
}

.btn-large:hover .arrow-icon {
    transform: translate(3px, -5px); /* Move the arrow on hover */
}

/* Cookie Toast */
.cookie-toast {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Changed from 'left: 20px;' */
    z-index: 2000;
    width: calc(100% - 40px);
    max-width: 400px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateY(150%);
    opacity: 0;
}

.cookie-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    flex: 1;
}

.cookie-content .btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-content .privacy-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--background-color);
    text-align: center;
}

.pricing-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .pricing-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-card .price-description {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    height: 40px; /* Ensures consistent height across cards */
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.pricing-card .price .per-month {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.pricing-card .btn {
    margin-top: 20px;
    width: 100%;
}

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

.features-list li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.check-icon, .cross-icon {
    font-size: 1.2em;
    margin-right: 10px;
}

.check-icon {
    color: var(--accent-color);
}

.cross-icon {
    color: var(--light-gray);
}

.features-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

/* Highlighted Pro Card */
.highlighted-card {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlighted-card .btn-accent {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .highlighted-card {
        transform: scale(1.0); /* Remove the highlight scale on smaller screens */
    }
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-color), #6FA8DC); /* Slightly different gradient */
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.contact-hero-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.contact-hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: flex-start; /* Align content to the top */
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #555;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-info ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-info ul li a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info ul li a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-section h1 {
        font-size: 2.8rem;
    }

    .contact-hero-section p {
        font-size: 1rem;
    }
}

/* Features Hero Section (Retained from previous version) */
.features-hero-section {
    background: linear-gradient(135deg, var(--background-color), var(--white));
    padding: 100px 0;
    text-align: center;
}

.features-hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.features-hero-section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn-group .btn {
    margin: 0 10px;
}

/* Features List Section (New and improved styling) */
.features-list-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.feature-image-placeholder {
    flex: 1;
    min-width: 300px;
    height: 250px; /* Placeholder height */
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reverse the order for alternating layout */
.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .feature-card:nth-child(even) {
        flex-direction: column;
    }

    .feature-image-placeholder {
        order: -1; /* Puts the image at the top on small screens */
    }

    .features-hero-section h1 {
        font-size: 2.5rem;
    }

    .feature-text h3 {
        font-size: 1.8rem;
    }
}

.auth-card {
    background: #ffffff;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.auth-form input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.auth-form button {
    margin-top: 1rem;
}

.auth-card .small-text {
    margin-top: 1rem;
    font-size: 0.9rem;
}