body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Hero Section - The Main Visual Punch */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(30, 58, 138), rgb(59, 130, 246));
}

.localtitle span {
    color: yellow;
}

.support-hours {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 15px;
  text-align: center; /* sau left, daca il vrei aliniat cu telefonul */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay to make text readable */
}

.hero .container {
    position: relative;
    z-index: 2;
}

.tagline {
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

h1 {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Call to Action Buttons */

.cta-button-header {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 15px;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-footer {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-header:hover, .cta-button-footer:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.phone-number {
    display: block;
    font-size: 0.7em;
    margin-top: 5px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Main Content Sections */
.section {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.section h2 {
    text-align: center;
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 15px;
}

.section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px auto;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-list li {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 700;
}

@media (max-width: 720px) {
  .benefit-list li {
      max-width: 100%;
  }
}

.icon {
    font-size: 1.5em;
    color: #27ae60;
    font-weight: 900;
    margin-right: 5px;
}

.cta-bottom {
    text-align: center;
}

.cta-bottom .phone-number {
    font-weight: 700;
    font-size: 1.1em;    
}


/* FAQ Section */
.faq {
}

.faq h2 {
    text-align: center;
    padding: 1rem;
}

.faq .cta-button {
    text-align: center;
}

.qa-item {
    margin: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.question:hover {
    background: #f5f7fa;
}

.question h3 {
    color: #2A3F8E;
    font-size: 1.1rem;
    margin: 0;
}

.toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.answer {
    display: none;
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.answer p {
    color: #666;
    line-height: 1.8;
}

.answer strong {
    color: #2A3F8E;
}

.faq .cta-button {
    display: block; 
    margin: 2rem auto 0;
    width: fit-content;
}

/* Active State */
.qa-item.active .answer {
    display: block;
}

.qa-item.active .toggle {
    transform: rotate(45deg);
}


/* Footer & Legal */
.footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
}

.disclaimer {
    margin-bottom: 10px;
    font-size: 10px;
}

.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 5px;
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    h1 { font-size: 2em; }
    .sub-headline { font-size: 1em; }
    .cta-button-header, .cta-button-footer { font-size: 1em; }
    .benefit-list { flex-direction: column; }
    .section p { text-align: left; }
}

/* ===== Fix pentru sectiunea .hero pe mobil ===== */
@media (max-width: 720px) {
  .hero {
    flex-direction: column;      /* pune elementele pe coloana */
    align-items: flex-start;     /* incepe de sus */
    justify-content: flex-start;
    padding: 10px 15px;
    height: auto;                /* lasa sectiunea sa se mareasca dupa continut */
    min-height: unset;           /* elimina blocarea la 400px */
    text-align: left;            /* mai lizibil pe mobil */
  }

  .hero .container {
    width: 100%;
  }

  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .sub-headline {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .cta-button-header {
    font-size: 1em;
    padding: 12px 10px;
    margin-bottom: 10px;
    text-align: center;
  }

  .support-hours {
    display: block;
    margin-top: 10px;
    text-align: left;  /* sau center daca il vrei sub buton */
    font-size: 0.85em;
  }
}