/*
Theme Name: DIYOMX
Description: WordPress theme for DIYOMX website to showcase apps and achievements
Version: 1.0
Author: DIYOMX Team
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    min-height: 100vh;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.site-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.main-navigation a.active {
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a7c59, #5a8c69);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a6b3f, #4a7c59);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4a7c59;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #4a7c59;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7c59, #5a8c69);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.app-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 1rem;
    text-align: center;
}

.app-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.app-features li {
    padding: 0.3rem 0;
    color: #555;
}

.app-features li:before {
    content: "✓ ";
    color: #4a7c59;
    font-weight: bold;
}

.app-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-current {
    background: #e8f5e8;
    color: #2c5530;
}

.status-future {
    background: #fff3cd;
    color: #856404;
}

.status-development {
    background: #d1ecf1;
    color: #0c5460;
}

/* Achievements Section */
.achievements-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #2c5530;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title:after {
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #4a7c59, #5a8c69);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #4a7c59;
}

.achievement-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #666;
    font-size: 0.9rem;
}

/* YouTube Section */
.youtube-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.youtube-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.youtube-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.youtube-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #4a7c59;
}

.youtube-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.youtube-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

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

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-intro h2 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid #4a7c59;
}

.mission-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.mission-item h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    margin: 3rem 0;
}

.services-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #4a7c59;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a7c59, #5a8c69);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-item h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.values-section {
    margin: 3rem 0;
}

.values-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.team-section {
    margin: 3rem 0;
}

.team-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a7c59, #5a8c69);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.member-role {
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
}

.timeline-section {
    margin: 3rem 0;
}

.timeline-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #4a7c59;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #4a7c59;
    border-radius: 50%;
}

.timeline-year {
    background: #4a7c59;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* Contact Page Styles */
.contact-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #4a7c59;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.contact-details h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.3rem;
}

.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-item h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.social-section {
    margin: 3rem 0;
}

.social-section h2 {
    color: #2c5530;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #4a7c59;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    color: #2c5530;
}

.social-link-large i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link-large span {
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #2c5530;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
    color: #4a7c59;
}

.footer-privacy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-privacy-links h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    opacity: 0.9;
}

.footer-privacy-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-privacy-links a:hover {
    color: #4a7c59;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #4a7c59;
    transform: scale(1.1);
}

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-info {
    border-left: 4px solid #17a2b8;
}

.notification-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-info .notification-content i {
    color: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Privacy Policy Styles */
.privacy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.privacy-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #4a7c59;
}

.privacy-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: #4a7c59;
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.1);
}

.privacy-section h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-section h2 i {
    color: #4a7c59;
    font-size: 1.5rem;
}

.privacy-subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
}

.privacy-subsection h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.privacy-subsection ul {
    list-style: none;
    padding: 0;
}

.privacy-subsection li {
    padding: 0.5rem 0;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-right: 1.5rem;
}

.privacy-subsection li:before {
    content: "•";
    color: #4a7c59;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.privacy-subsection p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #4a7c59;
    transform: translateX(-5px);
}

.contact-item i {
    color: #4a7c59;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #555;
    font-weight: 500;
}

.privacy-footer {
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.privacy-footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.privacy-footer strong {
    color: #4a7c59;
}

.app-badge {
    background: linear-gradient(135deg, #2c5530 0%, #3a6b3f 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(44, 85, 48, 0.3);
}

.app-badge i {
    font-size: 1.2rem;
}

.app-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 1rem;
    backdrop-filter: blur(10px);
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.dark-mode-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover i {
    transform: rotate(180deg);
}

/* Dark Mode Styles */
.dark-mode {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: #e0e0e0 !important;
}

.dark-mode .site-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 1px solid #333;
}

.dark-mode .site-title {
    color: #ffffff;
}

.dark-mode .site-description {
    color: #cccccc;
}

.dark-mode .main-navigation a {
    color: #e0e0e0;
}

.dark-mode .main-navigation a:hover,
.dark-mode .main-navigation a.active {
    color: #4a7c59;
}

.dark-mode .dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.dark-mode .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Section Dark Mode */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
}

.dark-mode .hero-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .hero-subtitle {
    color: #cccccc;
}

/* Cards and Sections Dark Mode */
.dark-mode .app-card,
.dark-mode .feature-item,
.dark-mode .achievement-item,
.dark-mode .service-item,
.dark-mode .team-member,
.dark-mode .timeline-item,
.dark-mode .youtube-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .app-card:hover,
.dark-mode .feature-item:hover,
.dark-mode .service-item:hover,
.dark-mode .team-member:hover,
.dark-mode .youtube-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

/* Buttons Dark Mode */
.dark-mode .btn-primary {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    border: 1px solid #4a7c59;
}

.dark-mode .btn-primary:hover {
    background: linear-gradient(135deg, #5a8c69 0%, #6a9c79 100%);
    border-color: #5a8c69;
}

.dark-mode .btn-secondary {
    background: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.dark-mode .btn-secondary:hover {
    background: #4a7c59;
    color: white;
}

/* Footer Dark Mode */
.dark-mode .site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
}

.dark-mode .footer-info h3,
.dark-mode .footer-privacy-links h4 {
    color: #ffffff;
}

.dark-mode .footer-info p {
    color: #cccccc;
}

.dark-mode .footer-links a,
.dark-mode .footer-privacy-links a {
    color: #e0e0e0;
}

.dark-mode .footer-links a:hover,
.dark-mode .footer-privacy-links a:hover {
    color: #4a7c59;
}

/* Privacy Policy Dark Mode */
.dark-mode .privacy-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

.dark-mode .privacy-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
}

.dark-mode .privacy-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4a7c59;
}

.dark-mode .privacy-section h2 {
    color: #ffffff;
}

.dark-mode .privacy-section h3 {
    color: #e0e0e0;
}

.dark-mode .privacy-subsection p,
.dark-mode .privacy-subsection li {
    color: #cccccc;
}

.dark-mode .privacy-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
}

.dark-mode .app-badge {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

/* Contact Form Dark Mode */
.dark-mode .contact-form input,
.dark-mode .contact-form textarea,
.dark-mode .contact-form select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #e0e0e0;
}

.dark-mode .contact-form input:focus,
.dark-mode .contact-form textarea:focus,
.dark-mode .contact-form select:focus {
    border-color: #4a7c59;
    background: rgba(255, 255, 255, 0.08);
}

.dark-mode .contact-form input::placeholder,
.dark-mode .contact-form textarea::placeholder {
    color: #888;
}

/* Notifications Dark Mode */
.dark-mode .notification {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .notification-success {
    border-color: #4a7c59;
}

/* Scroll to Top Button Dark Mode */
.dark-mode .scroll-to-top {
    background: #4a7c59;
    color: white;
    border: 1px solid #333;
}

/* Status Badges Dark Mode */
.dark-mode .app-status {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid #333;
}

.dark-mode .status-current {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

.dark-mode .status-development {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.dark-mode .status-future {
    background: linear-gradient(135deg, #6c757d 0%, #7c858c 100%);
    color: white;
}

/* YouTube Section Dark Mode */
.dark-mode .youtube-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.dark-mode .youtube-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .youtube-intro p {
    color: #cccccc;
}

.dark-mode .youtube-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .youtube-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

.dark-mode .youtube-card h3 {
    color: #ffffff;
}

.dark-mode .youtube-card p {
    color: #cccccc;
}

.dark-mode .youtube-icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

/* Achievements Section Dark Mode */
.dark-mode .achievements-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.dark-mode .achievements-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .achievement-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .achievement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

.dark-mode .achievement-number {
    color: #4a7c59;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .achievement-label {
    color: #e0e0e0;
}

/* Features Section Dark Mode */
.dark-mode .features-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.dark-mode .features-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

.dark-mode .feature-item h3 {
    color: #ffffff;
}

.dark-mode .feature-item p {
    color: #cccccc;
}

.dark-mode .feature-icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

/* Apps Section Dark Mode */
.dark-mode .apps-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.dark-mode .apps-section .section-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .app-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    backdrop-filter: blur(10px);
}

.dark-mode .app-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

.dark-mode .app-title {
    color: #ffffff;
}

.dark-mode .app-description {
    color: #cccccc;
}

.dark-mode .app-features li {
    color: #e0e0e0;
}

.dark-mode .app-icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c59 100%);
    color: white;
}

/* Section Titles Dark Mode */
.dark-mode .section-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Page Header Dark Mode */
.dark-mode .page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
}

.dark-mode .page-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .page-subtitle {
    color: #cccccc;
}

/* Contact Details Dark Mode */
.dark-mode .contact-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1.5rem;
}

.dark-mode .contact-item {
    color: #e0e0e0;
    border-bottom: 1px solid #333;
}

.dark-mode .contact-item:last-child {
    border-bottom: none;
}

.dark-mode .contact-item i {
    color: #4a7c59;
}

/* Additional Dark Mode Styles for Complete Coverage */
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6 {
    color: #ffffff !important;
}

.dark-mode p, .dark-mode span, .dark-mode div {
    color: #e0e0e0;
}

.dark-mode .site-main {
    background: transparent;
}

.dark-mode .hero-buttons .btn {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    border: 1px solid #4a7c59;
}

.dark-mode .hero-buttons .btn:hover {
    background: linear-gradient(135deg, #5a8c69 0%, #6a9c79 100%);
    transform: translateY(-2px);
}

.dark-mode .hero-buttons .btn-secondary {
    background: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.dark-mode .hero-buttons .btn-secondary:hover {
    background: #4a7c59;
    color: white;
}

/* Ensure all text elements are visible in dark mode */
.dark-mode * {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Fix any remaining light text on light backgrounds */
.dark-mode .app-features {
    color: #e0e0e0;
}

.dark-mode .app-features li {
    color: #cccccc;
}

.dark-mode .youtube-intro {
    color: #cccccc;
}

.dark-mode .achievement-item {
    text-align: center;
}

.dark-mode .feature-item {
    text-align: center;
}

/* About Page Dark Mode Styles */
.dark-mode .about-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.dark-mode .services-section,
.dark-mode .values-section,
.dark-mode .team-section,
.dark-mode .timeline-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.dark-mode .services-section h2,
.dark-mode .values-section h2,
.dark-mode .team-section h2,
.dark-mode .timeline-section h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .services-grid,
.dark-mode .values-grid,
.dark-mode .team-grid,
.dark-mode .timeline-grid {
    display: grid;
    gap: 2rem;
}

.dark-mode .service-item,
.dark-mode .value-item,
.dark-mode .team-member,
.dark-mode .timeline-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dark-mode .service-item:hover,
.dark-mode .value-item:hover,
.dark-mode .team-member:hover,
.dark-mode .timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
    transform: translateY(-5px);
}

.dark-mode .service-item h4,
.dark-mode .value-item h4,
.dark-mode .team-member h4,
.dark-mode .timeline-item h4 {
    color: #ffffff;
}

.dark-mode .service-item p,
.dark-mode .value-item p,
.dark-mode .team-member p,
.dark-mode .timeline-item p {
    color: #cccccc;
}

.dark-mode .service-icon,
.dark-mode .value-icon,
.dark-mode .team-member .member-avatar,
.dark-mode .timeline-icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

.dark-mode .timeline-item .timeline-date {
    color: #4a7c59;
    font-weight: bold;
}

/* Contact Page Dark Mode Styles */
.dark-mode .contact-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.dark-mode .contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
}

.dark-mode .contact-info h3 {
    color: #ffffff;
}

.dark-mode .contact-info p {
    color: #cccccc;
}

.dark-mode .contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
}

.dark-mode .contact-form h3 {
    color: #ffffff;
}

.dark-mode .contact-form label {
    color: #e0e0e0;
}

/* Privacy Pages Dark Mode Styles */
.dark-mode .privacy-intro {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.dark-mode .privacy-intro p {
    color: #cccccc;
}

/* Privacy Options Page Styles */
.privacy-options-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 70vh;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-intro p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-badge {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(44, 85, 48, 0.3);
    font-weight: 600;
}

.privacy-badge i {
    font-size: 1.2rem;
}

.privacy-badge span {
    font-weight: 600;
    font-size: 1.1rem;
}

.privacy-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.privacy-option-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.privacy-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: #4a7c59;
}

.privacy-option-card.featured {
    border: 2px solid #4a7c59;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08) 0%, rgba(90, 140, 105, 0.08) 100%);
    transform: scale(1.02);
}

.privacy-option-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.privacy-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.privacy-option-card.featured .privacy-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.privacy-card-header h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.privacy-card-header p {
    color: #666;
    font-size: 1rem;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.security-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.privacy-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.privacy-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-features li:last-child {
    border-bottom: none;
}

.privacy-features i {
    color: #4a7c59;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.privacy-card-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
}

.privacy-card-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.privacy-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Privacy Summary */
.privacy-summary {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.privacy-summary h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.summary-item {
    text-align: center;
    padding: 1.5rem;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.summary-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.summary-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Privacy Contact */
.privacy-contact {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(90, 140, 105, 0.1) 100%);
    border: 1px solid #4a7c59;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.privacy-contact h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.privacy-contact p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-buttons .btn {
    min-width: 200px;
}

/* Dark Mode Styles for Privacy Options */
.dark-mode .privacy-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

.dark-mode .privacy-option-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a7c59;
}

.dark-mode .privacy-option-card.featured {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(90, 140, 105, 0.1) 100%);
    border-color: #4a7c59;
}

.dark-mode .privacy-card-header h3 {
    color: #ffffff;
}

.dark-mode .privacy-card-header p {
    color: #cccccc;
}

.dark-mode .privacy-features li {
    color: #e0e0e0;
}

.dark-mode .privacy-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
}

.dark-mode .privacy-summary h2 {
    color: #ffffff;
}

.dark-mode .summary-item h4 {
    color: #ffffff;
}

.dark-mode .summary-item p {
    color: #cccccc;
}

.dark-mode .privacy-contact {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(90, 140, 105, 0.2) 100%);
    border-color: #4a7c59;
}

.dark-mode .privacy-contact h2 {
    color: #ffffff;
}

.dark-mode .privacy-contact p {
    color: #cccccc;
}

.dark-mode .privacy-badge {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8c69 100%);
    color: white;
}

/* Privacy Options Responsive Design */
@media (max-width: 768px) {
    .privacy-options-content {
        padding: 1rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-intro p {
        font-size: 1.1rem;
    }
    
    .privacy-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .privacy-option-card {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .privacy-card-header h3 {
        font-size: 1.3rem;
    }
    
    .privacy-card-header p {
        font-size: 0.9rem;
    }
    
    .privacy-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        min-width: 250px;
        margin: 0.5rem 0;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-option-card {
        min-height: 320px;
        padding: 1rem;
    }
    
    .privacy-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .privacy-card-header h3 {
        font-size: 1.2rem;
    }
    
    .featured-badge,
    .security-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Dark Mode Responsive */
@media (max-width: 768px) {
    .dark-mode-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .dark-mode .header-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .site-main {
        padding: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link-large {
        min-width: 100px;
        padding: 1rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Delete Account Page Styles */
.delete-account-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.warning-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.warning-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.warning-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.delete-account-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.process-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.process-steps ol {
    padding-right: 1.5rem;
}

.process-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.alternative-options {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.alternative-options ul {
    list-style: none;
    padding: 0;
}

.alternative-options li {
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
}

.alternative-options li:before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: #2c5530;
    font-weight: bold;
}

.legal-rights {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #2c5530;
}

.legal-rights h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Delete Account Page Responsive */
@media (max-width: 768px) {
    .delete-account-content {
        padding: 1rem;
    }
    
    .warning-box {
        padding: 1.5rem;
    }
    
    .warning-box i {
        font-size: 2rem;
    }
    
    .delete-account-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-danger,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}