/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Bar */
.navbar {
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
    font-weight: 500;
}

.navbar .logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #1abc9c;
}

.navbar .btn-login,
.navbar .btn-register {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar .btn-login {
    background-color: transparent;
    border: 2px solid #1abc9c;
    color: #1abc9c;
}

.navbar .btn-login:hover {
    background-color: #1abc9c;
    color: #fff;
}

.navbar .btn-register {
    background-color: #1abc9c;
    color: #fff;
}

.navbar .btn-register:hover {
    background-color: #16a085;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4;
    padding: 100px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 50%;
    flex: 1 1 100%;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #1abc9c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #16a085;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #1abc9c;
    color: #1abc9c;
}

.btn-secondary:hover {
    background-color: #1abc9c;
    color: #fff;
}

.hero-image {
    flex: 1 1 100%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
    color: #2c3e50;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5em;
    color: #1abc9c;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.pricing h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #555;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-card .price {
    font-size: 2em;
    color: #1abc9c;
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.6em;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #666;
}

.pricing-card .btn-primary {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5em;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1abc9c;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #1abc9c;
}

.footer-copyright {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .feature-card,
    .pricing-card {
        padding: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.privacy-policy .policy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-policy h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.privacy-policy .last-updated {
    font-size: 1.1em;
    color: #666;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 10px;
}

.policy-section p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #16a085;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5em;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1abc9c;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #1abc9c;
}

.footer-copyright {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .nav-links {
        display: none;
    }

    .privacy-policy h1 {
        font-size: 2.2em;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.5em;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .privacy-policy h1 {
        font-size: 2em;
    }

    .policy-section h2 {
        font-size: 1.3em;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.9em;
    }
}

/* Terms of Use Section */
.terms-of-use {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.terms-of-use .terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-of-use h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.terms-of-use .last-updated {
    font-size: 1.1em;
    color: #666;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 10px;
}

.terms-section p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-section ul li {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-section a {
    color: #1abc9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #16a085;
}

/* Responsive Design for Terms of Use */
@media (max-width: 768px) {
    .terms-of-use h1 {
        font-size: 2.2em;
    }

    .terms-content {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.5em;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .terms-of-use h1 {
        font-size: 2em;
    }

    .terms-section h2 {
        font-size: 1.3em;
    }

    .terms-section p,
    .terms-section ul li {
        font-size: 0.9em;
    }
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-us .contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-us h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-us .contact-header p {
    font-size: 1.1em;
    color: #666;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 1em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1abc9c;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    background-color: #1abc9c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #16a085;
}

.contact-details {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 500;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    margin-bottom: 15px;
    font-size: 1em;
    color: #555;
    display: flex;
    align-items: center;
}

.contact-details ul li i {
    margin-right: 10px;
    color: #1abc9c;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    color: #1abc9c;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: #16a085;
}

.contact-map {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-form,
    .contact-details {
        flex: 1;
    }

    .contact-us h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .contact-us h1 {
        font-size: 2em;
    }

    .contact-form,
    .contact-details {
        padding: 20px;
    }
}