:root {
    --primary-color: #4285F4;
    --secondary-color: #34A853;
    --accent-color: #EA4335;
    --light-color: #FBBC05;
    --dark-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --text-color: #333333;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 1rem;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.language-current:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.language-current .flag {
    font-size: 1.2rem;
}

.language-current .lang-code {
    font-size: 0.9rem;
    font-weight: 600;
}

.language-current i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-current:hover i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--light-gray);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background-color: var(--light-gray);
}

.language-option .flag {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.language-option .lang-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
}

/* Custom scrollbar for language dropdown */
.language-dropdown::-webkit-scrollbar {
    width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.language-dropdown::-webkit-scrollbar-thumb:hover {
    background: #3367d6;
}

/* RTL Support for Arabic and Urdu */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links li {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .hero {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    padding-right: 0;
    padding-left: 2rem;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo img {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .language-selector {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .footer-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-icons a {
    margin-right: 0;
    margin-left: 1rem;
}

@media screen and (max-width: 768px) {
    [dir="rtl"] .nav-links {
        left: 0;
        right: auto;
        transform: translateX(-100%);
    }

    [dir="rtl"] .nav-active {
        transform: translateX(0%);
    }

    [dir="rtl"] .hero-content {
        padding-left: 0;
    }

    [dir="rtl"] .language-selector {
        margin-right: 0.5rem;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

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

.btn-download {
    display: inline-block;
    transition: transform 0.3s;
}

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

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

/* Features Section */
.features {
    background-color: var(--light-gray);
    padding: 4rem 5%;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin: 1rem;
    flex: 1 1 300px;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.step {
    flex: 1 1 300px;
    margin: 1rem;
    padding: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step p {
    margin-bottom: 1rem;
}

.step img {
    max-width: 80%;
    height: auto;
}

/* Download Section */
.download {
    background-color: var(--light-gray);
    padding: 4rem 5%;
    text-align: center;
}

.download h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.download p {
    margin-bottom: 2rem;
}

.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links, .footer-social {
    flex: 1 1 200px;
    margin-bottom: 2rem;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--medium-gray);
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Tutorial Page Styles */
.tutorial-header {
    text-align: center;
    padding: 4rem 5% 2rem;
    background-color: var(--light-gray);
}

.tutorial-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.tutorial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.tutorial-section {
    margin-bottom: 4rem;
}

.tutorial-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tutorial-step {
    display: flex;
    align-items: flex-start;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
}

.step-content {
    margin-left: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.device-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background-color: var(--medium-gray);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-color);
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.device-tab {
    display: none;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
}

.device-tab.active {
    display: block;
}

.device-tab h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.device-tab ol {
    list-style-type: decimal;
    padding-left: 2rem;
}

.device-tab li {
    margin-bottom: 1.5rem;
}

.device-tab h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.usage-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.usage-method {
    flex: 1 1 400px;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2rem;
}

.usage-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.usage-method ol {
    list-style-type: decimal;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.usage-method li {
    margin-bottom: 0.5rem;
}

.faq {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.faq-answer {
    padding: 0 0 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Privacy, Terms, Contact Page Styles */
.privacy-header, .terms-header, .contact-header {
    text-align: center;
    padding: 4rem 5% 2rem;
    background-color: var(--light-gray);
}

.privacy-header h1, .terms-header h1, .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.privacy-content, .terms-content, .contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5% 4rem;
}

.privacy-section, .terms-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.privacy-section h2, .terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.privacy-section p, .terms-section p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.privacy-section ul, .terms-section ul,
.privacy-section ol, .terms-section ol {
    margin: 1rem 0 1rem 2rem;
    color: #333;
}

.privacy-section li, .terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.privacy-section strong, .terms-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-section a, .terms-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover, .terms-section a:hover {
    text-decoration: underline;
}

/* Contact Page Specific Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-method h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem 0;
    color: #333;
}

.contact-method p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-icon {
    display: inline-block;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    line-height: 3rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: rgba(66, 133, 244, 0.1);
    text-decoration: none;
}

.contact-form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form submit button */
.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

.contact-faq {
    margin: 4rem 0;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

/* Navigation adjustments for new pages */
.nav-links {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(100px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        background-color: white;
        top: 0;
        left: 0;
        z-index: 1000;
        padding-top: 5rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .nav-links.nav-active {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }
    
    .nav-links li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
    }
    
    .nav-links.nav-active li {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
        width: 4rem;
        height: 4rem;
        line-height: 2.5rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .privacy-header, .terms-header, .contact-header {
        padding: 2rem 5% 1.5rem;
    }
    
    .privacy-header h1, .terms-header h1, .contact-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section, .terms-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2, .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content, .terms-content, .contact-content {
        padding: 1rem 3% 2rem;
    }
}

/* Additional mobile-specific improvements */
@media (max-width: 480px) {
    .privacy-header h1, .terms-header h1, .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section ul, .terms-section ul,
    .privacy-section ol, .terms-section ol {
        margin-left: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-form-section {
        padding: 1rem;
    }
}

.privacy-section p, .privacy-section ul, .privacy-section ol {
    margin-bottom: 1rem;
}

.privacy-section ul, .privacy-section ol {
    padding-left: 2rem;
}

.privacy-section ul {
    list-style-type: disc;
}

.privacy-section ol {
    list-style-type: decimal;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        opacity: 0;
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    /* Language selector responsive */
    .language-selector {
        margin-left: 0.5rem;
    }

    .language-current {
        padding: 0.4rem 0.8rem;
        min-width: 70px;
    }

    .language-current .lang-code {
        font-size: 0.8rem;
    }

    .language-dropdown {
        right: -20px;
        min-width: 180px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .tutorial-step {
        flex-direction: column;
    }

    .step-content {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Google Ads Styles */
.ad-section {
    padding: 2rem 0;
    margin: 2rem 0;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ad-section .adsbygoogle {
    margin: 0 auto;
    min-height: 280px;
    border-radius: 4px;
    background-color: var(--white);
    border: 1px solid #ddd;
}

/* Responsive ads */
@media (max-width: 768px) {
    .ad-section {
        padding: 1rem;
        margin: 1rem;
        border-radius: 4px;
    }
    
    .ad-section .adsbygoogle {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .ad-section {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }
    
    .ad-section .adsbygoogle {
        min-height: 150px;
    }
}

/* Ad label (opcional para cumplir con políticas) */
.ad-section::before {
    content: "Publicidad";
    display: block;
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ads en contenido específico */
.tutorial-content .ad-section,
.privacy-content .ad-section {
    margin: 3rem auto;
    max-width: 800px;
}

/* Sticky ad (opcional para ads laterales en desktop) */
.sticky-ad {
    position: sticky;
    top: 100px;
    float: right;
    width: 300px;
    margin-left: 2rem;
    z-index: 10;
}

@media (max-width: 1024px) {
    .sticky-ad {
        display: none;
    }
}