/* Investment Advantages Section Styles */
.investment-advantages-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.investment-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5a96;
    text-align: center;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.investment-card {
    text-decoration: none;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 330 / 336.97;
    display: flex;
    flex-direction: column;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(26, 90, 150, 0.2);
}

.investment-image {
    width: 100%;
    height: 55%;
    overflow: hidden;
    position: relative;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.investment-card:hover .investment-image img {
    transform: scale(1.05);
}

.investment-content {
    padding: 1.5rem 1.25rem;
    background: linear-gradient(to bottom, #e8f1f8 0%, #f5f9fc 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.investment-icon {
    width: 36px;
    height: 34px;
    font-size: 1.5rem;
    color: #1a5a96;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-icon svg {
    width: 100%;
    height: 100%;
}

.investment-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a5a96;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-card-description {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .investment-advantages-section {
        padding: 3rem 0;
    }

    .investment-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-card {
        aspect-ratio: auto;
    }

    .investment-image {
        height: 200px;
    }

    .investment-content {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .investment-advantages-section {
        padding: 2rem 0;
    }

    .investment-title {
        font-size: 1.25rem;
    }

    .investment-image {
        height: 180px;
    }

    .investment-icon {
        width: 40px;
        height: 40px;
    }

    .investment-card-title {
        font-size: 0.9rem;
    }

    .investment-card-description {
        font-size: 0.8125rem;
    }
}
