<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* TPAOI - Main Stylesheet
* Version: 1.0
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --primary-light: #6988ff;
    --secondary-color: #6c63ff;
    --accent-color: #ff6584;
    --success-color: #48bb78;
    --warning-color: #f6ad55;
    --danger-color: #f56565;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --text-color: #4a5568;
    --text-light: #a0aec0;
    --border-color: #e2e8f0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
}

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

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

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

.btn-secondary:hover {
    background-color: #5a52e5;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn i {
    margin-left: 8px;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px;
    color: var(--text-light);
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.language-switch {
    position: relative;
}

.language-switch a {
    display: flex;
    align-items: center;
}

.language-switch i {
    margin-right: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 10px 0;
    width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

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

.language-dropdown li {
    margin: 0;
    padding: 0;
}

.language-dropdown li a {
    display: block;
    padding: 5px 15px;
    color: var(--text-color);
}

.language-dropdown li a:hover {
    background-color: var(--border-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
    overflow: hidden;
    padding: 80px 0;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    text-align: right;
    margin-left: 40px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== WHAT YOU LEARN SECTION ===== */
.what-you-learn {
    background-color: white;
}

.learn-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.learn-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.learn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.learn-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.learn-card .icon i {
    font-size: 30px;
    color: white;
}

.learn-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.learn-card p {
    color: var(--text-light);
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: #f7fafc;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

.feature-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    margin-top: 40px;
    position: relative;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 20px;
}

.testimonial-content {
    position: relative;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: #f9fafb;
    transform: rotate(45deg);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #cbd5e0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
    background-color: #f7fafc;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-content h2 {
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.cta-content h2:after {
    display: none;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.cta-image {
    flex: 1;
    text-align: right;
    margin-left: 40px;
}

.cta-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background-color: #1a202c;
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #a0aec0;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 1.5px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 1.5px;
}

.footer-contact p {
    color: #a0aec0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin-bottom: 0;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods i {
    font-size: 24px;
    color: #a0aec0;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.cookie-content p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.cookie-content p i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-content a {
    text-decoration: underline;
    font-size: 0.9rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
    color: white;
}

.breadcrumbs i {
    margin: 0 10px;
    font-size: 12px;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-box, .vision-box, .values-box {
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-box {
    background-color: #ebf8ff;
}

.vision-box {
    background-color: #e6fffa;
}

.values-box {
    background-color: #fef5f5;
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-10px);
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-box .icon {
    background-color: #4299e1;
}

.vision-box .icon {
    background-color: #38b2ac;
}

.values-box .icon {
    background-color: #f56565;
}

.mission-box .icon i, .vision-box .icon i, .values-box .icon i {
    font-size: 30px;
    color: white;
}

.team {
    background-color: #f7fafc;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 20px 0 5px;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    color: var(--text-light);
    padding: 0 20px 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f7fafc;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.partner {
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.partner:hover {
    transform: translateY(-5px);
}

.partner img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner:hover img {
    filter: grayscale(0%);
}

/* ===== FEATURES PAGE ===== */
.features-overview {
    background-color: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.features-tabs {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 20px;
    background-color: #f7fafc;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.panel-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.panel-image {
    flex: 1;
}

.panel-image img {
    border-radius: var(--border-radius);
}

.panel-details {
    flex: 1;
}

.panel-details h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 4px;
}

.plans-pricing {
    background-color: #f7fafc;
}

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

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
}

.price-header {
    background-color: #f7fafc;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-features {
    padding: 30px;
}

.price-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.price-features ul li i {
    margin-right: 10px;
}

.price-features ul li i.fa-check {
    color: var(--success-color);
}

.price-features ul li i.fa-times {
    color: var(--danger-color);
}

.price-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.custom-pricing {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.custom-pricing h3 {
    margin-bottom: 15px;
}

.custom-pricing p {
    margin-bottom: 20px;
}

.faq {
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background-color: #f7fafc;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

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

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

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

/* ===== BLOG PAGE ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.post-image {
    position: relative;
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.post-category span {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-meta-item i {
    margin-right: 5px;
}

.post-date, .post-author {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.post-date i, .post-author i {
    margin-right: 5px;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 1.5px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.search-form button:hover {
    color: var(--primary-color);
}

.categories-widget ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.categories-widget ul li:last-child {
    border-bottom: none;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    transition: var(--transition);
}

.categories-widget ul li a:hover {
    color: var(--primary-color);
}

.categories-widget ul li a span {
    background-color: #f7fafc;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    background-color: #f7fafc;
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.newsletter-widget p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

/* ===== BLOG SINGLE PAGE ===== */
.blog-single {
    background-color: #f7fafc;
}

.blog-single-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-main-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.post-header {
    padding: 30px 30px 0;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 0 30px 30px;
}

.post-content p.intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 30px;
}

.post-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    text-align: left;
}

.post-content h2:after {
    left: 0;
    transform: none;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 10px;
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-image-middle {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-image-middle img {
    width: 100%;
    height: auto;
}

.image-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 10px;
    background-color: #f7fafc;
}

.post-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    background-color: #f7fafc;
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.post-share a.facebook {
    background-color: #3b5998;
}

.post-share a.twitter {
    background-color: #1da1f2;
}

.post-share a.linkedin {
    background-color: #0077b5;
}

.post-share a.whatsapp {
    background-color: #25d366;
}

.post-share a.email {
    background-color: #ea4335;
}

.post-share a:hover {
    transform: translateY(-3px);
}

.post-author-bio {
    display: flex;
    padding: 30px;
    background-color: #f7fafc;
    border-top: 1px solid var(--border-color);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-info .author-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

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

.related-posts {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    background-color: #f7fafc;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px 15px 5px;
    font-size: 1rem;
}

.related-post .post-date {
    padding: 0 15px 15px;
    display: block;
}

.post-comments {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.post-comments h3 {
    margin-bottom: 30px;
}

.comments-list {
    margin-bottom: 40px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.comment-actions {
    margin-top: 10px;
}

.comment-actions a {
    font-size: 0.9rem;
    font-weight: 600;
}

.comment-form h3 {
    margin-bottom: 20px;
}

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.recent-posts-widget .recent-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-widget .recent-post h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-posts-widget .recent-post .post-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
}

.cta-widget h3:after {
    display: none;
}

.cta-widget p {
    margin-bottom: 20px;
}

.newsletter-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h2 {
    color: white;
    text-align: left;
    margin-bottom: 15px;
}

.newsletter-content h2:after {
    display: none;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2, .contact-form-container h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info h2:after, .contact-form-container h2:after {
    left: 0;
    transform: none;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-item .icon i {
    font-size: 20px;
    color: white;
}

.info-item .text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item .text p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.contact-form {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: var(--border-radius);
}

.map-section {
    background-color: #f7fafc;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    border: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    color: var(--success-color);
}

.thank-you-message p {
    margin-bottom: 30px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    background-color: white;
    padding: 80px 0;
}

.legal-document {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    text-align: right;
}

.legal-intro {
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: left;
}

.policy-section h2:after {
    display: none;
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
}

.legal-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-light);
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content p {
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-left: 0;
    }

    .cta-section .container {
        flex-direction: column;
    }

    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-image {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-layout, .blog-single-layout {
        grid-template-columns: 1fr;
    }

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

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

    .panel-image {
        margin-bottom: 30px;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
    }

    .timeline-item .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }

    .timeline-item .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    header .container {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1001;
        padding: 80px 20px 20px;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 0 0 15px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
    }

    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 0 20px;
        width: auto;
    }

    .language-switch:hover .language-dropdown {
        transform: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        margin-bottom: 15px;
    }

    .comment-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-share {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cookie-consent {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .legal-document {
        padding: 20px;
    }
}
</pre></body></html>