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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo-small {
    height: 70px;

}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #007bff;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 60px;
}

.hero-content {
    text-align: center;
    padding: 2rem;
}

.logo-large {
    width: 200px;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.hero-content p {
    font-size: 1.5rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn img {
    height: 24px;
}

/* Features Section */
#features {
    padding: 5rem 2rem;
    background: white;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-logo img {
    height: 40px;

}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007bff;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Privacy Policy Styles */
.policy-content {
    max-width: 1000px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.policy-content h1 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: #636e72;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    text-align: left;
}

.policy-section h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin: 1.5rem 0 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #636e72;
}

.policy-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #636e72;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-content {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Account Deletion Styles */
.deletion-content {
    max-width: 600px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.deletion-content h1 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 2rem;
}

.deletion-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warning-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.warning-message h2 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.warning-message p {
    color: #856404;
    margin: 0;
}

.deletion-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.delete-btn:hover {
    background: #c82333;
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
}

.confirmation-message h2 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-message p {
    color: #636e72;
    margin-bottom: 1.5rem;
}

.back-home {
    display: inline-block;
    background: #007bff;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-home:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .deletion-content {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .deletion-container {
        padding: 1.5rem;
    }
}

/* Support Page Styles */
.support-content {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.support-content h1 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 2rem;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.support-info {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.support-info h2 {
    color: #2d3436;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.contact-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details i {
    color: #ff5900;
}

.support-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-form-container h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.support-form .form-group {
    margin-bottom: 1.5rem;
}

.support-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3436;
    font-weight: 500;
}

.support-form input,
.support-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.support-form textarea {
    height: 150px;
    resize: vertical;
}

.raise-ticket-btn {
    background: #FF3131;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.raise-ticket-btn:hover {
    background: #FF5757;
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
    background: #d4edda;
    border-radius: 8px;
    margin-top: 1rem;
}

.confirmation-message h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.confirmation-message p {
    color: #155724;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .support-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-content {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .support-form-container,
    .support-info {
        padding: 1.5rem;
    }
}

/* Permission Section Styles */
.permissions-list {
    margin: 1.5rem 0;
}

.permission-item {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.permission-item h3 {
    color: #2d3436;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.permission-item p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .permission-item {
        padding: 1rem;
    }
}

/* Terms of Service Styles */
.terms-content {
    max-width: 1000px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.terms-content h1 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-size: 1.6rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 0.5rem;
}

.terms-section p {
    margin-bottom: 1rem;
    color: #636e72;
    line-height: 1.6;
}

.terms-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #636e72;
}

.terms-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .terms-content {
        margin-top: 80px;
        padding: 0 1rem;
    }

    .terms-content h1 {
        font-size: 2rem;
    }

    .terms-section h2 {
        font-size: 1.4rem;
    }
}

