 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .why-choose-section {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
            padding: 80px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(255,255,255,0.03) 2px,
                    rgba(255,255,255,0.03) 4px
                );
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            color: white;
            font-size: 3em;
            font-weight: 600;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .section-subtitle {
            text-align: center;
            color: white;
            font-size: 1.5em;
            line-height: 1.6;
            margin-bottom: 60px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-weight: 400;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 20px;
        }

        .card {
            background: linear-gradient(145deg, #fef5e7, #f9ebdb);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f4d03f);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .star-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            position: relative;
        }

        .star {
            fill: #d4af37;
            filter: drop-shadow(0 4px 6px rgba(212, 175, 55, 0.3));
            animation: starPulse 2s ease-in-out infinite;
        }

        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .card:hover .star {
            animation: starRotate 0.6s ease-in-out;
        }

        @keyframes starRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .card-title {
            font-size: 1.4em;
            color: #d4af37;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .card-title.highlight {
            background: #0066cc;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            display: inline-block;
        }

        .card-description {
            font-size: 1.05em;
            color: #5d4e37;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2em;
            }

            .section-subtitle {
                font-size: 1.2em;
                padding: 0 10px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                padding: 0;
            }
        }