/* --- Stiluri de bază și globale --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- Componente reutilizabile --- */

/* Titluri de secțiune */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #000;
    margin: 2rem 1rem 1rem;
}

/* Secțiunea de highlight (dacă este o componentă generică) */
.highlight {
    background-color: #000;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.highlight img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* Grile de caracteristici */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 0.5rem;
}

/* Modificator pentru iconuri mici în grila de caracteristici */
.features-grid.small-icons img {
    max-width: 100px;
}

/* Carduri de prețuri */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* font-family este deja definit in body, nu este necesar aici decat daca vrei sa suprascrii */
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.pricing-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #000;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 1rem;
}

.buy-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Imagini badge (folosite la parteneri) */
.badge-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Stiluri pentru secțiunea de întrebări frecvente (FAQ) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #000;
}

.faq-item p {
    font-size: 1rem;
    color: #333;
}


/* --- Stiluri pentru secțiuni specifice (înlocuind stilurile inline) --- */

.section-license-info {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
}

.section-license-info h1 {
    font-size: 1.5rem;
    color: #000;
}

.section-license-info h1 .highlight-yellow { /* Clasă pentru span-ul cu fundal galben */
    background-color: #fbeeb8;
}

.section-license-info p {
    font-size: 1.1rem;
    color: #000;
    margin-top: 0.5rem;
}

.section-license-info p .dark-text { /* Clasă pentru textul mai închis din primul paragraf */
    color: #2c2c2c;
    /* text-align: start; - Atenție, text-align pe span poate fi problematic, mai bine pe bloc */
}

.section-overview {
    padding: 2rem 1rem;
    text-align: center;
}

.section-overview h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-overview p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-padding { /* Clasă generică pentru padding-ul secțiunilor */
    padding: 2rem 1rem;
}

.section-with-top-hr { /* Pentru secțiunile care încep cu o linie orizontală */
    padding-top: 2rem; /* Deja inclus in .section-overview */
    padding-bottom: 1rem; /* Adaugă padding la sfârșitul secțiunii dacă e nevoie */
}

.section-with-top-hr hr {
    margin: 0 auto; /* Ajusteaza daca este nevoie */
    border: none;
    border-top: 1px solid #eee; /* O linie subtire de separare */
    margin-bottom: 2rem; /* Spatiu dupa linie */
}

.section-centered-text { /* Pentru paragraful centrat din secțiunea "AI creativ..." */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

/* --- Media Queries (Design Responsiv) --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}