
/* ========================================
   INDEX PAGE STYLES
   ======================================== */

/* Hero Override for homepage */
.page-index .hero {
    padding: 100px 0;
}

.page-index .hero-content h1 {
    font-size: 3.2rem;
}

.page-index .hero-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.btn-primary-large {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-large:hover {
    background: #e09500;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 165, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 38px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-large:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-box {
    background: #fef3f2;
    border-left: 4px solid var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.problem-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.problem-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* All-in-One Feature Section */
.allinone-section {
    padding: 80px 0;
    background: white;
}

.page-index .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.feature-list-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-list-item i {
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-list-item p {
    color: var(--text-light);
    margin: 0;
}

/* Reasons Section */
.reasons-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.reason-card {
    background: white;
    padding: 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    background: #f9fafb;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fffbf5 0%, #fff8f0 100%);
}

.pricing-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    min-height: 50px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonial-card {
    background: white;
    border-left: 4px solid var(--accent);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-white:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6ff 100%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.guarantee-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.guarantee-box p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .page-index .feature-list {
        grid-template-columns: 1fr;
    }
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .page-index .hero {
        padding: 60px 0;
    }
}

/* ========================================
   DOWNLOAD PAGE STYLES
   ======================================== */

.guarantee-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #eff6ff 100%);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.guarantee-banner h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.guarantee-banner p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Version Cards */
.version-section {
    padding: 80px 0;
    background: #f9fafb;
}

.version-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.version-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.version-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.version-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.version-card .price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.version-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.version-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.version-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.version-features li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-secondary-download {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 33px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-download:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.update-box {
    background: #fffbf5;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.update-box p {
    margin: 0;
    color: var(--text-light);
}

.old-versions {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.old-versions h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.old-versions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.old-versions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.old-versions li:last-child {
    border-bottom: none;
}

.old-versions a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.old-versions a:hover {
    color: var(--accent);
}

/* Addons Section */
.addons-section {
    padding: 80px 0;
    background: white;
}

.addon-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.addon-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.addon-icon {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.addon-title {
    flex-grow: 1;
}

.addon-title h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
}

.addon-title .size {
    color: var(--text-light);
    font-size: 0.85rem;
}

.addon-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-download-addon {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-download-addon:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: #f9fafb;
}

.app-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.app-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.app-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.app-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Freeware Section */
.freeware-section {
    padding: 80px 0;
    background: white;
}

.freeware-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2.5rem;
}

.freeware-box h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.freeware-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-download-free {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-download-free:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .version-card {
        padding: 2rem;
    }
}

/* ========================================
   FUNKTIONEN PAGE STYLES
   ======================================== */

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--border-light);
}

.nav-tabs .nav-link {
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--primary);
    border: none;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    border: none;
    border-bottom: 3px solid var(--accent);
    background: transparent;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f9fafb;
}

.table-responsive-custom {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: var(--primary);
    color: white;
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-light);
    vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table tbody tr:hover {
    background: #eff6ff;
}

.check-mark {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-name {
    font-weight: 500;
}

/* Steuerberater Section */
.steuerberater-section {
    padding: 80px 0;
    background: white;
}

.steuerberater-box {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.steuerberater-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.steuerberater-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ========================================
   UPDATE PAGE STYLES
   ======================================== */

/* Update Cards */
.update-section {
    padding: 80px 0;
    background: #f9fafb;
}

.update-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.update-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.update-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.update-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.update-price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-update {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-update:hover {
    background: #e09500;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(240, 165, 0, 0.2);
}

/* Benefit Cards */
.benefit-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.benefit-card h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* What's New Section */
.whats-new-section {
    padding: 80px 0;
    background: #f9fafb;
}

.new-features {
    columns: 2;
    column-gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.feature-item h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Policy Section */
.policy-section {
    padding: 80px 0;
    background: white;
}

.policy-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    margin-bottom: 1rem;
}

.policy-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.policy-item p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .new-features {
        columns: 1;
    }
}

/* ========================================
   MAC PAGE STYLES
   ======================================== */

/* Solution Cards */
.solutions-section {
    padding: 80px 0;
    background: #f9fafb;
}

.solution-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

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

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-card strong {
    color: var(--primary);
}

/* Detail Cards */
.detail-section {
    padding: 80px 0;
    background: white;
}

.detail-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.detail-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.detail-card p:last-child {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f9fafb;
}

.table-responsive-custom {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: var(--primary);
    color: white;
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-light);
    vertical-align: middle;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table tbody tr:hover {
    background: #eff6ff;
}

.check-mark {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.partial-mark {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.x-mark {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   HILFE PAGE STYLES
   ======================================== */

/* Help Cards */
.help-section {
    padding: 80px 0;
    background: #f9fafb;
}

.help-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.help-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.help-card i {
    color: var(--accent);
    font-size: 1.5rem;
}

.help-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.help-card p:last-child {
    margin-bottom: 0;
}

.btn-help {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.btn-help:hover {
    background: #e09500;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* FAQ Accordion */
.accordion .card {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion .card-header {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.accordion .card-header button {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion .card-header button:hover {
    background: var(--primary);
    color: white;
}

.accordion .card-header button.collapsed::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
}

.accordion .card-header button:not(.collapsed)::after {
    content: '\2212';
    float: right;
    font-size: 1.5rem;
}

.accordion .card-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* PDF Download Section */
.pdf-section {
    background: linear-gradient(135deg, #fffbf5 0%, #fff8f0 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.pdf-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pdf-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.pdf-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-pdf {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pdf:hover {
    background: #e09500;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(240, 165, 0, 0.2);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
}

.video-thumbnail::before {
    content: '\25B6';
    position: absolute;
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

.video-content {
    padding: 1.5rem;
}

.video-content h5 {
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.video-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}
