.header-top {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-bottom {
    text-align: center;
    background-color: rgba(46,55,164,1);
    color: #fff !important;
}

.hero-section {
    background: linear-gradient(135deg, #eafaf1 30%, #d4edda 100%);
    padding: 100px 0;
    color: #2c3e50;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #5f6f81;
    opacity: 0.9;
}

.btn-cta {
    background-color: #38a169;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(56,161,105,0.2);
}

.btn-cta:hover {
    background-color: #2f855a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(56,161,105,0.3);
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 0.9rem;
        padding: 12px 30px;
    }
    
    .hero-image {
        margin-top: 20px;
        max-width: 80%;
        height: auto;
    }
}

.about-section {
    background: linear-gradient(135deg, #eafaf1 30%, #d4edda 100%);
    padding: 100px 0;
    color: #2c3e50;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.2rem;
    color: #5f6f81;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-highlight {
    font-size: 1.1rem;
    color: #38a169;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.btn-cta {
    background-color: #38a169;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(56,161,105,0.2);
}

.btn-cta:hover {
    background-color: #2f855a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(56,161,105,0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-section {
        text-align: center;
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-highlight {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 0.9rem;
        padding: 12px 30px;
    }
    
    .about-image {
        margin-bottom: 20px;
        max-width: 80%;
        height: auto;
    }
}

.conditions-section {
    background: linear-gradient(135deg, #eafaf1 30%, #d4edda 100%);
    padding: 100px 0;
    color: #2c3e50;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5f6f81;
    margin-bottom: 40px;
    line-height: 1.6;
}

.condition-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.condition-icon {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 15px;
}

.condition-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.condition-description {
    font-size: 1.1rem;
    color: #5f6f81;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .conditions-section {
        padding: 60px 20px;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .condition-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .condition-title {
        font-size: 1.3rem;
    }

    .condition-description {
        font-size: 1rem;
    }

    .condition-icon {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, #eafaf1 30%, #d4edda 100%);
    padding: 100px 0;
    color: #2c3e50;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-process {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.process-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    width: 80%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9a44, #fc6076);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-content {
    text-align: left;
}

.step-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Step Connector */
.connector {
    width: 4px;
    height: 30px;
    background: #ffffff;
    margin: 10px 0;
    border-radius: 2px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .step-icon {
        margin-bottom: 10px;
    }
}

.consultation-section {
    background: linear-gradient(135deg, #eafaf1 30%, #d4edda 100%);
    padding: 100px 0;
    color: #2c3e50;
    text-align: center;
}

.consultation-section .section-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.consultation-section .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.consultation-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 8px rgba(46,55,164,0.3);
}

.btn-primary {
    background-color: #2c3e50;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
}

.btn-primary:hover {
    background-color: #2c3e50;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-whatsapp, .btn-call {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.btn-call {
    background-color: #ff4d4d;
}

.btn-call:hover {
    background-color: #e63c3c;
}

/* Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    background-color: #2e37a4;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #d1d1d1;
    margin: 0;
}

