﻿/* ---------------------------------------------------
   General & Base Styles
--------------------------------------------------- */
:root {
    --main-green: #006600; /* Deep green from the Portuguese flag */
    --main-red: #FF0000; /* Strong red from the Portuguese flag */
    --accent-gold: #FFD700; /* Gold for accents, inspired by the coat of arms */
    --dark-text: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ---------------------------------------------------
   Header & Navigation
--------------------------------------------------- */
header {
    background-color: var(--main-green);
    color: var(--white);
    padding: 2rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
}

.logo a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 25px;
    background: none;
    padding-left: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.header-content {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
}

.header-text {
    flex: 1;
    text-align: left;
}

.header-image {
    flex: 1;
    max-width: 50%;
}

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

header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 600;
}

header p {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ---------------------------------------------------
   Main Content & Sections
--------------------------------------------------- */
main {
    padding-bottom: 40px;
}

section {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
    border-bottom: none;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--main-green);
}

section h3 {
    font-size: 1.5rem;
    color: #004d00; /* Darker Green */
    margin-bottom: 15px;
}

.highlight-section {
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* ---------------------------------------------------
   Buttons
--------------------------------------------------- */
.button, .button-secondary, .button-ebay {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    border: 2px solid transparent;
}

.button {
    background-color: var(--accent-gold);
    color: var(--dark-text);
}

.button:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-2px);
}

.button-secondary {
    background-color: var(--main-green);
    color: var(--white);
    border-color: var(--main-green);
}

.button-secondary:hover {
    background-color: #004d00; /* Darker green */
}

.button-ebay {
    background-color: var(--main-red);
    color: var(--white);
}

.button-ebay:hover {
    background-color: #cc0000; /* Darker Red */
    transform: translateY(-2px);
}

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

.button-group .button,
.button-group .button-secondary,
.button-group .button-ebay {
    flex-grow: 1;
}

/* ---------------------------------------------------
   Comparison Table
--------------------------------------------------- */
.comparison-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--main-green);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: var(--light-bg);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.check-mark {
    color: var(--main-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.cross-mark {
    color: var(--main-red);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ---------------------------------------------------
   Cards (General)
--------------------------------------------------- */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.four-columns {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card .price {
    margin-top: auto;
    font-weight: 700;
    color: var(--dark-text);
}

.product-card-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 4px;
}

.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.three-columns {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ---------------------------------------------------
   Feature Card Styles
--------------------------------------------------- */
.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: var(--accent-gold);
}


/* ---------------------------------------------------
   Lists
--------------------------------------------------- */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23006600" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>') no-repeat left center;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
footer {
    background-color: #1d2a1d; /* Darker Green for footer */
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

footer a {
    color: #a3d9a3;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 8px 0;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    margin: 20px auto;
    max-width: 500px;
}

.footer-legal p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

.external-icon {
    font-size: 0.8em;
    display: inline-block;
    margin-left: 5px;
    transform: translateY(-2px);
}

/* ---------------------------------------------------
   Social Proof & Example Videos
--------------------------------------------------- */
#social-proof {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.social-link-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--main-green);
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s, color 0.3s;
}

.social-link-icon:hover {
    transform: translateY(-5px);
    color: var(--main-red);
}

.social-link-icon svg {
    margin-bottom: 10px;
}

.example-videos {
    margin-top: 40px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.example-videos h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.example-videos ul {
    list-style: none;
    padding: 0;
}

.example-videos li {
    background-position: 0 5px; /* Adjust icon position */
}

.example-videos a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 1.1rem;
}

.example-videos a:hover {
    text-decoration: underline;
    color: var(--main-green);
}


/* ---------------------------------------------------
   CTA Section (Call to Action)
--------------------------------------------------- */
.cta-section {
    background-color: #1d2a1d; /* Darker Green */
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    text-align: center;
}

.cta-section .section-subtitle {
    color: #ffffff;
    opacity: 0.9;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-icon {
    flex-shrink: 0;
}

.cta-icon svg {
    color: var(--accent-gold);
}

.cta-text ul {
    padding-left: 0;
}

.cta-text li {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffd700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
}

/* CTA Box inside an article */
.cta-box {
    background-color: #e6f2e6;
    border: 2px solid #a3d9a3;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    margin-top: 0;
    color: var(--main-green);
}


/* ---------------------------------------------------
   Page-Specific Styles
--------------------------------------------------- */

/* ----- Product Page ----- */
#product-details .product-main {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

#product-details .product-image {
    flex: 1;
    max-width: 400px;
}

#product-details .product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-info-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#product-details .product-info {
    flex: initial;
}

#product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#product-details .subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 100%;
}

.product-price-box {
    background-color: #e6f2e6;
    border: 2px solid #a3d9a3;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.product-price-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-green);
    margin: 0 0 10px 0;
}

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

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
    position: relative;
    bottom: -2px;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--main-green);
    border-bottom-color: var(--main-red);
}

.tab-pane {
    display: none;
    padding: 30px 10px;
    animation: fadeIn 0.5s;
}

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

.feature-section {
    margin-bottom: 20px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.spec-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
}

.spec-table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

/* ----- Service & Application Pages ----- */
.service-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

.service-content {
    flex: 2;
}

.service-image {
    flex: 1;
    max-width: 350px;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-details {
    padding: 20px 30px 30px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    background-color: var(--white);
    margin-top: -21px;
}

.service-item h2 {
    text-align: left;
    margin-top: 0;
    border-bottom: 2px solid var(--main-red);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.service-details .price {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1rem;
}

.service-item.partner-network {
    display: block;
    text-align: center;
    background-color: transparent;
    border: none;
}

/* ----- Blog / Article Page ----- */
.article-container {
    max-width: 800px;
    background-color: var(--white);
    padding: 40px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.article-container h1 {
    font-size: 2.4rem;
    color: var(--main-green);
}

.article-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

article h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #004d00;
}

article p, article li {
    font-size: 1.1rem;
    line-height: 1.7;
}

article ul {
    padding-left: 20px;
}

article ul li {
    margin-bottom: 15px;
}

article a {
    color: var(--main-red);
    font-weight: 600;
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.mini-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: opacity 0.3s;
}

.mini-gallery img:hover {
    opacity: 0.8;
}

.article-card .article-excerpt {
    flex-grow: 1;
    color: #555;
    margin-top: 10px;
}

.article-card .article-category {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    font-weight: 500;
}

/* ----- Gallery & Testimonials (Homepage) ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

#testimonials {
    background-color: #e6f2e6; /* Light green background */
}

.testimonial-card {
    border-left: 5px solid var(--main-green);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--main-green);
    text-align: right;
}

.video-casestudy {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
}

.video-casestudy h4 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--main-green);
    margin-top: 0;
    margin-bottom: 20px;
}

.video-container-responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

blockquote {
    border-left: 5px solid var(--main-green);
    margin: 30px 0;
    padding: 10px 20px;
    background-color: var(--light-bg);
    font-style: italic;
}

.case-study-box {
    background-color: var(--light-bg);
    border-left: 5px solid var(--main-green);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.case-study-box h3 {
    margin-top: 0;
}

/* ---------------------------------------------------
   Responsive Design & Mobile Menu
--------------------------------------------------- */
.burger-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-bar {
    width: 2rem;
    height: 0.25rem;
    background: #FFD700; /* Желтый цвет для португальского сайта */
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    height: 100vh;
    width: 100%;
    background: var(--main-green);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav li {
    background: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
}


@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

    .header-text {
        text-align: center;
    }

    .header-image {
        max-width: 90%;
        margin-top: 30px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    #product-details .product-main, .service-item {
        flex-direction: column;
    }

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

    .cta-section h2 {
        text-align: center;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------------------------------------------------
   Image Modal (Lightbox)
--------------------------------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* WhatsApp Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
} 

/* ---------------------------------------------------
   Video Section Styles
--------------------------------------------------- */
.videos-section {
    margin: 2rem 0;
}

.videos-section h3 {
    color: #0052cc;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.shorts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.short-video {
    text-align: center;
}

.short-video iframe {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    margin: 0 auto 1rem auto;
    display: block;
}

.short-video p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    padding: 0 1rem;
}

.main-video {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-video iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.main-video p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    padding: 0 2rem;
}

/* Mobile responsiveness for videos */
@media (max-width: 768px) {
    .shorts-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .short-video iframe {
        height: 400px;
        max-width: 280px;
    }
    
    .main-video iframe {
        height: 315px;
    }
    
    .short-video p,
    .main-video p {
        padding: 0;
        font-size: 0.85rem;
    }
}
/* ---------------------------------------------------
   Support Cards Styles
--------------------------------------------------- */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #212529; /* Ensure text is dark inside cards */
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.support-card-icon {
    width: 60px;
    height: 60px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.support-card h3 {
    color: #0052cc;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-card ul {
    list-style: none;
    padding: 0;
}

.support-card li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%230052cc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h11"></path></svg>');
    background-position: 0 3px;
    background-size: 18px 18px;
    color: #212529; /* Dark text color */
}

.support-card ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.support-card ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    background: none;
    color: #212529; /* Dark text color */
}

.support-card ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #0052cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.support-info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.support-info-box p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #ffffff;
}

.support-info-box a {
    color: #ffffff;
    text-decoration: underline;
}

.support-info-box a:hover {
    opacity: 0.8;
}

/* Mobile responsiveness for support cards */
@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .support-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
