/* Start custom CSS for html, class: .elementor-element-61035b1 */.container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .container.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        
        .header {
            grid-column: 1 / -1;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .header h1 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .header p {
            color: var(--dark);
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .card {
            height: 480px;
            perspective: 1500px;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease;
            transform-style: preserve-3d;
            box-shadow: 0 10px 30px rgba(93, 64, 55, 0.2);
            border-radius: 15px;
        }
        
        @media (hover: hover) {
            .card:hover .card-inner {
                transform: rotateY(180deg);
            }
        }
        
        .card.active .card-inner {
            transform: rotateY(180deg);
        }
        
        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            flex-direction: column;
            padding: 30px;
            box-sizing: border-box;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .card-front {
            background-size: cover;
            background-position: center;
            color: white;
            justify-content: flex-end;
            text-align: center;
            z-index: 2;
        }
        
        .card-front::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(93, 64, 55, 0.9), rgba(104, 159, 56, 0.85));
            z-index: -1;
        }
        
        .flip-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: spin 4s infinite linear;
        }
        
        .card:hover .flip-indicator {
            opacity: 0;
        }
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .card-back {
            background: linear-gradient(135deg, #ffffff 0%, #F1F8E9 100%);
            color: var(--dark);
            justify-content: center;
            transform: rotateY(180deg);
            overflow-y: auto;
            box-shadow: inset 0 0 20px rgba(93, 64, 55, 0.1);
            border: 1px solid rgba(104, 159, 56, 0.2);
        }
        
        .card-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        
        .card-front h2 {
            font-size: 1.8rem;
            margin: 0 0 15px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.4);
        }
        
        .card-front p {
            font-size: 1.1rem;
            line-height: 1.5;
            opacity: 0.95;
            text-shadow: 0 1px 3px rgba(0,0,0,0.4);
        }
        
        .card-back h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 0 0 20px;
            font-weight: 600;
            text-align: center;
        }
        
        .card-back ul {
            padding: 20px;
            margin: 0;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(93, 64, 55, 0.1);
        }
        
        .card-back li {
            margin-bottom: 12px;
            font-size: 1rem;
            line-height: 1.4;
            position: relative;
            color: var(--dark);
        }
        
        .card-back li::before {
            content: '•';
            color: var(--secondary);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .card {
                height: 420px;
            }
            
            .header h1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .card-front h2 {
                font-size: 1.4rem;
                padding: 0 10px;
            }
            
            .card-front p {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .card-back h3 {
                font-size: 1.3rem;
            }
            
            .card-back li {
                font-size: 0.95rem;
            }
            
            .flip-indicator {
                top: 15px;
                right: 15px;
                font-size: 1rem;
                width: 25px;
                height: 25px;
                animation: none;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }
            
            .header h1 {
                font-size: 1.5rem;
            }
            
            .card {
                height: 380px;
            }
            
            .card-front, .card-back {
                padding: 20px;
            }
            
            .card-icon {
                font-size: 2.8rem;
                margin-bottom: 15px;
            }
            
            .card-front h2 {
                font-size: 1.2rem;
            }
            
            .card-back h3 {
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .card-back li {
                font-size: 0.9rem;
                margin-bottom: 8px;
            }
            
            .flip-indicator {
                top: 10px;
                right: 10px;
                font-size: 0.9rem;
                width: 22px;
                height: 22px;
            }
        }/* End custom CSS */