/* ========================================
   PRO FIRMY PAGE STYLES
   ======================================== */



.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2A558C;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A558C;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: #2A558C;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.services-section {
    background: #F7F6F4;
    padding: 80px 0;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #2165B2;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    color: #2A558C;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
}

.service-item p {
    color: #2A558C;
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #1E3D6B 0%, #2165B2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(33, 101, 178, 0.3);
    font-family: 'Poppins', sans-serif;
}

.process-step h4 {
    color: #2A558C;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
}

.process-step p {
    color: #2A558C;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.questions-section {
    background: #F7F6F4;
    padding: 80px 0;
}

.questions-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.questions-text {
    flex: 1;
    text-align: left;
}

.questions-image {
    flex: 1;
    text-align: center;
}

.questions-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.questions-section .section-title {
    color: #2A558C;
    margin-bottom: 2rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.questions-section .lead {
    font-size: 1.2rem;
    color: #2A558C;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.questions-section p {
    font-size: 1.1rem;
    color: #2A558C;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.contact-info {
    margin-top: 2rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2A558C;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #2A558C;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.email-link:hover {
    background: #2A558C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 85, 140, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, #1E3D6B 0%, #2165B2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-section .lead {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

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

.btn-custom {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary-custom {
    background: white;
    color: #2A558C;
    border: 2px solid white;
}

.btn-primary-custom:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .questions-content {
        flex-direction: column;
        gap: 40px;
    }

    .questions-text {
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-custom {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {

    .content-section,
    .services-section,
    .process-section,
    .questions-section {
        padding: 50px 0;
    }

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