﻿body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }

        .breadcrumb-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }

            .breadcrumb-bg h2 {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 15px;
            }

        .breadcrumbs-custom-path {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .breadcrumbs-custom-path li {
                color: rgba(255,255,255,0.8);
                margin: 0 5px;
            }

                .breadcrumbs-custom-path li a {
                    color: white;
                    text-decoration: none;
                }

        .plan-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

            .section-title h3 {
                font-size: 2.5rem;
                font-weight: 700;
                color: #2d3748;
                margin-bottom: 15px;
            }

            .section-title p {
                font-size: 1.1rem;
                color: #718096;
            }

        .plan-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

            .plan-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            }

            .plan-card.starter {
                border-color: #3182ce;
            }

            .plan-card.silver {
                border-color: #ed8936;
                position: relative;
            }

                .plan-card.silver::before {
                    content: "POPULAR";
                    position: absolute;
                    top: 20px;
                    right: 20px;
                    background: #ed8936;
                    color: white;
                    padding: 5px 15px;
                    border-radius: 20px;
                    font-size: 0.75rem;
                    font-weight: 600;
                }

            .plan-card.gold {
                border-color: #d69e2e;
            }

        .plan-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .plan-card.starter .plan-title {
            color: #3182ce;
        }

        .plan-card.silver .plan-title {
            color: #ed8936;
        }

        .plan-card.gold .plan-title {
            color: #d69e2e;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 30px;
        }

            .plan-price span {
                font-size: 1.2rem;
                font-weight: 400;
                color: #718096;
            }

        .plan-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

            .plan-features li {
                padding: 12px 0;
                border-bottom: 1px solid #e2e8f0;
                color: #4a5568;
                font-size: 1rem;
            }

                .plan-features li:last-child {
                    border-bottom: none;
                }

                .plan-features li i {
                    margin-right: 10px;
                    color: #48bb78;
                }

        .btn-invest {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .btn-invest.starter {
                background: #3182ce;
                color: white;
            }

            .btn-invest.silver {
                background: #ed8936;
                color: white;
            }

            .btn-invest.gold {
                background: #d69e2e;
                color: white;
            }

            .btn-invest:hover {
                opacity: 0.9;
                transform: scale(1.02);
            }

        .benefits-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            margin-top: 60px;
        }

            .benefits-section h3 {
                font-size: 2rem;
                margin-bottom: 30px;
                text-align: center;
            }

        .benefit-item {
            text-align: center;
            padding: 20px;
        }

            .benefit-item i {
                font-size: 3rem;
                margin-bottom: 15px;
            }

            .benefit-item h5 {
                font-size: 1.3rem;
                margin-bottom: 10px;
            }