
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-content {
    padding-right: 40px;
}

.hero-label {
    color: #7b2ff7;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    animation: slideInLeft 0.8s ease 0.3s both;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-label:hover {
    opacity: 0.7;
    color: #7b2ff7;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #7b2ff7;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease 0.5s both;
    text-transform: uppercase;
    font-family: "Poppins",sans-serif !important;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    text-align: justify;
    animation: slideInLeft 0.8s ease 0.7s both;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7b2ff7;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
    animation: slideInLeft 0.8s ease 0.9s both;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hero-button:hover {
    background: #0f766e;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.4);
}

.hero-button::before {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-button:hover::before {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    animation: slideInRight 1s ease 0.5s both;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.1);
}

.info-box {
    background: white;
    border-radius: 30px;
    padding: 60px 80px;
    margin-bottom: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.info-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-box p {
    font-size: 1.1rem;
    color: #475569;
    text-align: justify;
    line-height: 2;
    margin-bottom: 20px;
}

.info-box p strong {
    color: #0d9488;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    box-shadow: 0 20px 60px rgba(13, 148, 136, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.section-divider {
    display: grid;

    gap: 10px;
    margin-bottom: 40px;
    align-items: center;
}

.section-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.section-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.section-image:hover img {
    transform: scale(1.08);
}

.content-block {
    background: white;
    border-radius: 30px;
    padding: 60px 80px;
    margin-bottom: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0d9488, #14b8a6);
}

.content-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    border-radius: 2px;
}

.content-text {
    font-size: 1.05rem;
    color: #64748b;
    text-align: justify;
    line-height: 2;
    transition: max-height 0.5s ease;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.content-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}

.read-more-btn {
    background: transparent;
    border: 2px solid #0d9488;
    color: #0d9488;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: 25px;
    display: inline-block;
}

.read-more-btn:hover {
    background: #0d9488;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.methods-section {
    background: white;
    border-radius: 30px;
    padding: 80px;
    margin-bottom: 80px;
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);*/
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.methods-section.visible {
    opacity: 1;
    transform: scale(1);
}

.methods-title {
    font-size: 3rem;
    font-weight: 800;
    color: #7b2ff7;
    margin-bottom: 60px;
    text-align: center;
}

.method-card {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e8f0;
}

.method-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.method-card h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 25px;
    font-weight: 700;
}

.method-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 2;
    text-align: justify;
    margin-bottom: 15px;
}

.more-link {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.more-link:hover {
    gap: 15px;
    color: #0f766e;
}

.more-link::after {
    content: '→';
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 1024px) {
    .hero-section,
    .section-divider {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .content-block,
    .info-box,
    .methods-section {
        padding: 40px;
    }

    .methods-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-block,
    .info-box,
    .methods-section {
        padding: 30px;
    }
}
