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

body {
    line-height: 1.6em;
    color: #333;
    background-color: #f9f9f9;
    font-family: 'Quicksand', serif;
    font-size: 18px;
}

/* Text elements - Merriweather */
p, ul li, span, .struggles-text p, .doctor-closing, .benefit-item p, .testimonial-text, .footer-copyright {
    font-family: 'Quicksand', serif;
    font-size: 18px;
    line-height: 1.6em;
}

/* Headings and buttons - Open Sans */
h1, h2, h3, h4, h5, h6, 
.hero-title, 
.hero-subtitle,
.doctor-title,
.doctor-subtitle,
.doctor-highlight h3,
.benefits-title,
.testimonials-title,
.testimonials-subtitle,
.cta-title,
.cta-subtitle,
.cta-button,
a,
.top-bar-left,
.top-bar-right,
.footer-left,
.footer-links a {
    font-family: 'Quicksand', sans-serif;
}

header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

header span{
    font-size: 0.9em;
    font-family: 'Quicksand', sans-serif;
}


.hero-section {
    background: #f0f7fe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.hero-content {
    max-width: 870px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.4em;
    line-height: 1.2;
    font-weight: 700;
    margin: 10px 0 20px 0;
    color: #000;
}

.hero-title span{
    color: #ffd700;
    font-size: 1em;
    line-height: 1.2;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2em;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #5d988f;
    font-weight: 500;
}

.hero-image {
    max-width: 100%;
    height: 430px;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 2px solid #ffd700;
}

.limited-time {
    font-size: 1.1em;
    color: #ffd700;
    margin-top: 8px;
    font-style: italic;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 1.8em;
    color: #1a5f7a;
    margin: 30px 0 20px;
}

.subheadline {
    font-size: 1.4em;
    color: #ffd700;
    margin-bottom: 20px;
}

.intro {
    font-size: 1.2em;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.benefits {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.benefits-grid a {
    text-decoration: none;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.benefits li:before {
    content: "✓";
    color: #1a5f7a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.testimonials-section a {
    text-decoration: none;
}

.testimonials {
    margin: 40px 0;
}

.testimonial {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimonial-name {
    font-weight: bold;
    color: #1a5f7a;
}


.struggles-section {
    padding: 48px 20px 48px 20px;
    background-color: #f9f9f9;
}

.struggles-box {
    background: white;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.struggles-title {
    text-align: left;
    color: #000;
    font-size: 1.6em;
    margin-bottom: 40px;
    line-height: 1.3;
}

.struggles-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.struggles-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #444;
}

.struggles-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.struggles-list h3 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.4em;
}

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

.struggles-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: #444;
}

.struggles-list i {
    color: #15ac86;
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .struggles-content {
        grid-template-columns: 1fr;
    }
    
    .struggles-box {
        padding: 30px 20px;
    }
    
    .struggles-title {
        font-size: 1.8em;
    }

    header span{
        font-size: 0.8em;
    }

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

    .cta-section h2{
        line-height: 1.2;
        font-size: 1.6em !important;
    }
}

.doctor-section {
    padding: 30px 20px 48px 20px;
    background-color: #f9f9f9;
    background: linear-gradient(135deg, #1a5f7a, #0d2b36);

}

.doctor-box {
    color: white;
}

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

.doctor-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    line-height: 1.3;
    color: white;
}

.doctor-subtitle {
    font-size: 1.3em;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #ffd700;
}

.doctor-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(5px);
}

.doctor-highlight h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #ffd700;
}

.doctor-highlight p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

.doctor-closing {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
    margin-top: 40px;
}

.testimonials {
    background-color: #f7f7f7;
    margin: 0;
    padding: 0 0 24px
}

.testimonials-title {
    font-weight: 700;
    font-size: 28px;
    color: #1a3c63;
    margin-bottom: 20px;
    width: 100%
}

.testimonials .testimonials-title {
    margin-bottom: 0;
    text-align: center;
    display: block;
    width: 100%
}

.testimonials h3 {
    font-size: 18px;
    font-family: Quicksand,serif;
    margin-bottom: 32px;
    display: block;
    width: 100%
}

.doctor-badges img,.header-badge img {
    width: 24px;
    height: 24px
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 24px
}

.testimonials-grid a{
    text-decoration: none;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px
}

.testimonial-avatar {
    flex-shrink: 0
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5d988f
}

.doctor-info,.testimonial-content,.testimonial-info {
    flex: 1
}

.testimonial-name {
    font-weight: 700;
    font-size: 18px;
    color: #5d988f;
    margin: 0
}

.testimonial-location {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.testimonial-button {
    background: linear-gradient(135deg,#28a745 0,#218838 100%);
    margin-top: 20px
}

.note,ul {
    margin-top: 0
}

.testimonial-button:hover {
    background: linear-gradient(135deg,#218838 0,#28a745 100%)
}


.note {
    font-size: 14px;
    color: #888
}

.testimonial-box {
    max-width: 800px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    padding: 20px;
    border-left: 6px solid #ffe355;
    margin-bottom: 24px
}

.testimonial-box blockquote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin: 0;
    line-height: 1.5;
    position: relative
}

.testimonial-box blockquote::before {
    content: "“";
    font-size: 50px;
    color: #ffe355;
    position: absolute;
    left: -20px;
    top: -30px;
    font-weight: 700
}

.testimonial-box blockquote::after {
    content: "”";
    font-size: 50px;
    color: #ffe355;
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-weight: 700
}

.testimonial-author {
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    color: #0073e6
}

.testimonial-author span {
    font-weight: 400;
    font-size: 14px;
    color: #666
}

@media (max-width: 768px) {
    
    .doctor-title {
        font-size: 1.8em;
        margin-top: 0;
    }
    
    .doctor-subtitle {
        font-size: 1.1em;
    }
    
    .doctor-highlight {
        padding: 30px 20px;
    }
    
    .doctor-highlight h3 {
        font-size: 1.4em;
    }
    
    .doctor-highlight p {
        font-size: 1.1em;
    }
}

.benefits-section {
    padding: 30px 20px 60px 20px;
    background-color: #f9f9f9;
}

.benefits-box {
    background: white;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.benefits-title {
    text-align: center;
    color: #000;
    font-size: 1.8em;
    margin-bottom: 40px;
    line-height: 1.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: #effef5;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 2.5em;
    color: #15ac86;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #000;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-box {
        padding: 30px 20px;
    }
    
    .benefits-title {
        font-size: 1.6em;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item i {
        font-size: 2em;
    }
    
    .benefit-item h3 {
        font-size: 1.2em;
    }
    
    .benefit-item p {
        font-size: 1em;
    }
}


@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-title {
        font-size: 1.8em;
    }
    
    .testimonials-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

.cta-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.cta-box {
    background: linear-gradient(135deg, #15ac86, #0d8c6d);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-title {
    font-size: 2em;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
}

.cta-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cta-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.cta-notice-header p{
    font-weight: bold;
    font-size: 1.4em;
}

.cta-notice i {
    font-size: 1.5em;
    color: #ffd700;
}

.cta-notice p{
    font-size: 1.1em;
}

.cta-notice p:last-of-type {
    margin: 0;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#024e77 0,#03679d 100%);
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    margin: 30px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button i {
    font-size: 1.2em;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: #ffd700;
    font-size: 1.1em;
}

.cta-section .cta-button{
    margin: 0 0 16px 0;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.6em;
    }
    
    .cta-subtitle {
        font-size: 1.1em;
    }
    
    .cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-notice {
        text-align: center;
    }
    
    .cta-notice-header {
        justify-content: center;
    }
}

.footer {
    background: #1a5f7a;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 0;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.footer-left i {
    color: #15ac86;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

.img-video {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.img-video-bg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.img-vide-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    animation: pulse 2s infinite;
}

.viewers-count {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.viewers-count i {
    color: #ffd700;
}

.img-video-bg span{
    font-family: 'Open Sans', sans-serif;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    /* Header e Top Bar */
    header {
        padding: 10px 15px;
    }

    .top-bar-left, .top-bar-right {
        font-size: 0.8em;
        padding: 8px 15px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.4em;
        margin: 20px 0;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-image {
        height: auto;
        max-height: 300px;
    }

    /* Video Container */
    .img-video {
        max-width: 100%;
    }

    .img-vide-icon {
        width: 150px;
        height: 150px;
    }

    .viewers-count {
        font-size: 12px;
        padding: 6px 12px;
        bottom: 10px;
        right: 10px;
    }

    /* Struggles Section */
    .struggles-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .struggles-box {
        padding: 20px;
    }

    .struggles-title {
        font-size: 1.4em;
    }

    /* Doctor Section */
    .doctor-box {
        padding: 0;
    }

    .doctor-title {
        font-size: 1.6em;
    }

    .doctor-subtitle {
        font-size: 1.1em;
    }

    .doctor-highlight {
        padding: 20px;
    }

    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item i {
        font-size: 2em;
    }


    /* CTA Section */
    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.6em;
    }

    .cta-subtitle {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .footer-copyright {
        font-size: 0.8em;
    }

    .container{
        padding: 0;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4em;
    }

    .hero-subtitle {
        font-size: 0.9em;
    }

    .img-vide-icon {
        width: 150px;
        height: 150px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.border-red-500 { border-color: #ef4444; }
.border-green-500 { border-color: #22c55e; }
.border-blue-500 { border-color: #3b82f6; }

.text-center { text-align: center; }
    .py-16 { padding: 64px 0; }
    .py-12 { padding: 48px 0; }
    .py-8 { padding: 32px 0; }
    .px-5 { padding: 0 20px; }
    .mb-8 { margin-bottom: 32px; }
    .mb-6 { margin-bottom: 24px; }
    .mb-4 { margin-bottom: 16px; }
    .mb-3 { margin-bottom: 12px; }
    .mt-12 { margin-top: 48px; }
    .mt-8 { margin-top: 32px; }
    
    .bg-gray-50 { background-color: #f9fafb; }
    .bg-gray-100 { background-color: #f3f4f6; }
    .bg-red-50 { background-color: #fef2f2; }
    .bg-white { background-color: #fff; }
    .bg-green-50 { background-color: #f0fdf4; }
    .bg-blue-50 { background-color: #eff6ff; }
    .bg-purple-50 { background-color: #faf5ff; }
    .bg-yellow-50 { background-color: #fefce8; }
    .bg-orange-100 { background-color: #fed7aa; }
    .bg-red-100 { background-color: #fee2e2; }
    .bg-yellow-100 { background-color: #fef3c7; }
    
    .text-red-600 { color: #dc2626; }
    .text-red-800 { color: #991b1b; }
    .text-green-600 { color: #16a34a; }
    .text-green-700 { color: #15803d; }
    .text-green-800 { color: #166534; }
    .text-blue-600 { color: #2563eb; }
    .text-purple-600 { color: #9333ea; }
    .text-gray-600 { color: #4b5563; }
    .text-gray-700 { color: #374151; }
    .text-gray-800 { color: #1f2937; }
    .text-gray-900 { color: #111827; }
    .text-yellow-800 { color: #92400e; }
    .text-orange-800 { color: #9a3412; }
    
    .grid {
      display: grid;
      gap: 32px;
    }
    
    .grid-cols-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .shadow-lg {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    
    .rounded-lg {
      border-radius: 8px;
    }
    
    .border-l-4 {
      border-left: 4px solid;
    }
    
    .border-red-500 { border-color: #ef4444; }
    .border-green-500 { border-color: #22c55e; }
    .border-blue-500 { border-color: #3b82f6; }
    
    .btn {
      display: inline-block;
      padding: 16px 32px;
      background: #dc2626;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: background-color 0.2s;
    }
    
    .btn:hover {
      background: #b91c1c;
    }
    
    h1 {
      font-size: 2.5rem;
      font-weight: bold;
      line-height: 1.2;
      margin-bottom: 16px;
      margin-top: 0;
    }
    
    h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 24px;
    }
    
    h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 16px;
    }
    
    h4 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 12px;
    }
    
    .hero-img {
      width: 100%;
      max-width: 600px;
      border-radius: 8px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
  
    
    .bullet-img {
      width: 20px;
      height: 20px;
      margin-right: 12px;
      vertical-align: middle;
    }
    /* Ajuste do tamanho da logo */

    
   .gradient-bg > div,
.gradient-bg a {
  display: block;
  text-align: center;
}

    
    @media (max-width: 768px) {
      .grid-cols-3,
      .grid-cols-2 {
        grid-template-columns: 1fr;
      }
      
      h1 {
        font-size: 2rem;
      }
      
      h2 {
        font-size: 1.5rem;
      }
      
      .container {
        padding: 0 16px;
      }
    }.edition-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 5px;
  text-align: center;
}

.daily-ritual{
    background-color: #eef6ff;
    padding: 20px 0;
}

.daily-ritual h2{
    text-align: center;
    color: #000;
}

.text-ritual{
    text-align: center;
    margin-bottom: 16px;
}

.big-pharma h2{
    color: #fff;
}

.announcement p{
    white-space: pre-line;
}

.note {
    font-size: 14px;
    color: #888;
    text-align: center;
}

/*.hero-section span{*/
/*    font-size: 0.8rem;*/
/*}*/

.announcement img{
    width: 100%;
    height: 250px;
}

.announcement p{
    margin-bottom: 16px;
}

.hero-title span{
    color: red;
    text-decoration: underline;
}

.cta-container {
    padding: 20px;
    background: linear-gradient(135deg,#f8f9fa 0,#e9ecef 100%);
    border-radius: 12px;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    width: 100%;
    text-align: center;
}



.benefits-list{
    list-style: none;
    margin: 16px 0;
    padding: 18px 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid #4caf50;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    line-height: 1.5;
}

.benefits-list li{
    font-size: 1.1rem;
    color: #252525;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0;
}

.benefits-list li svg{
    width: 40px;
    height: 30px;
    vertical-align: middle;
    margin-right: 5px;
    color: #4caf50;
}

.solution-section{
    list-style: none;
    margin: 16px 0;
    padding: 18px 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    line-height: 1.5;
}

.solution-section li{
    font-size: 1.1rem;
    color: #252525;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0;
}

.faq-section {
    margin: 0;
    padding: 40px 0 0 0;
    border-top: 1px solid #eee;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #024e77;
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5em;
    color: #024e77;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #495057;
}
