:root {
            --primary-color: #8B4CAF;
            --secondary-color: #A259CC;
            --text-color: #333;
            --bg-color: #f9f9f9;
            --button-border-radius: 4px;
        }

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

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

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

        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .logo a {
         text-decoration: none;
         color: white;
        }

        img.logo-header {
          max-height: 60px;
        }

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

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

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #e0e0e0;
        }

        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('header.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: var(--button-border-radius);
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: var(--secondary-color);
        }

        section {
            padding: 100px 0;
        }

        section.pricing {
            padding: 110px 0;
        }

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

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .feature {
            flex-basis: calc(33.333% - 20px);
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

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

        .feature i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }


        /* Pricing Section Styles */
.pricing {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.pricing-tiers {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pricing-tier {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-10px);
}

.pricing-tier.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.pricing-tier h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-tier .price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-tier .price span {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.pricing-tier ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-tier ul li {
    margin-bottom: 10px;
    color: #333;
}

.pricing-tier ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

.pricing-tier .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pricing-tier .btn:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 992px) {
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
    }

    .pricing-tier {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

        .about {
            background-color: #f0f0f0;
        }

        .about-content {
            display: flex;
            align-items: center;
        }

        .about-text {
            flex: 1;
            padding-right: 40px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
        }

        .testimonials {
            text-align: center;
        }

        .testimonial {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
        }

        footer a {
          color: #fff;
        }

        @media (max-width: 768px) {
            .feature {
                flex-basis: 100%;
            }

            .about-content {
                flex-direction: column;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 10px;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: var(--button-border-radius);
            cursor: pointer;
        }

        .form-submit:hover {
            background-color: var(--secondary-color);
        }

        .error-message {
            color: red;
            margin-top: 10px;
        }
        .auth-switch {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .auth-switch button {
        background-color: #f0f0f0;
        border: none;
        padding: 10px 20px;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: var(--button-border-radius);
    }

    .auth-switch button.active {
        background-color: var(--primary-color);
        color: white;
    }

    /* Privacy and Terms and Conditions page */
        .privacy-content, .terms-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .privacy-content h1, .terms-content h1 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .privacy-content h2, .terms-content h2 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
            text-align: left;
        }

        .privacy-content p, .terms-content p {
            margin-bottom: 15px;
        }

        .privacy-content ul, .terms-content ul {
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .privacy-content li, .terms-content li {
            margin-bottom: 5px;
        }

        .hidden {
          display: none;
        }

        /* Dashboard */

        .dashboard {
            padding: 80px 0;
        }

        .connect-accounts, .connected-accounts {
            margin-bottom: 40px;
        }

        .connect-accounts button {
            margin-right: 10px;
            margin-bottom: 10px;
        }

        #account-list {
            list-style-type: none;
            padding: 0;
        }

        #account-list li {
            background-color: #f0f0f0;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
        }
.dashboard section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.dashboard h2 {
  margin-bottom: 20px;
}

.dashboard button {
  margin-right: 10px;
  margin-bottom: 10px;
}

#account-list, #filter-list, #scheduled-posts-list {
  list-style-type: none;
  padding: 0;
}

#account-list li, #filter-list li, #scheduled-posts-list li {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#feed-container {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 10px;
}

.feed-item {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

#share-url {
  width: 300px;
  margin-right: 10px;
}

#post-content {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}

/* Theme styles */
.theme-dark {
  background-color: #333;
  color: #fff;
}

.theme-light {
  background-color: #f0f0f0;
  color: #333;
}

.theme-colorful {
  background-color: #f0f0f0;
  color: #333;
}

.theme-colorful .dashboard section {
  background-color: #e0f7fa;
}

.theme-colorful .btn {
  background-color: #26a69a;
}
