        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #8b9556 0%, #a8b566 50%, #b8c77a 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .language-toggle button {
            background: white;
            border: 3px solid #e8d875;
            padding: 12px 24px;
            margin: 0 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            color: #6b7c3d;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .language-toggle button.active {
            background: linear-gradient(135deg, #e8d875 0%, #f5e89d 100%);
            color: #5a6b2e;
        }

        .language-toggle button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .container {
            max-width: 1000px;
            margin: 80px auto 40px;
        }

        .header {
            background: linear-gradient(135deg, #6b7c3d 0%, #8b9556 50%, #b8c77a 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 300;
            letter-spacing: 2px;
        }

        .header p {
            font-size: 1.1em;
            opacity: 0.95;
        }

        .content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .section {
            background: white;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            border-left: 5px solid #e8d875;
        }

        .section h2 {
            color: #6b7c3d;
            font-size: 1.8em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #b8c77a;
            font-weight: 400;
        }

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

        .info-item {
            background: linear-gradient(135deg, #f8f9f4 0%, #fafbf0 100%);
            padding: 20px;
            border: 2px solid #e8ecd8;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .info-item:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            border-left: 4px solid #e8d875;
        }

        .copy-btn {
            position: absolute;
            top: 0;
            right: 0;
            background: transparent;
            border: none;
            padding: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .copy-btn:hover {
            transform: scale(1.15);
        }

        .copy-btn:active {
            transform: scale(0.95);
        }

        .copy-btn svg {
            width: 17px;
            height: 17px;
            fill: #6b7c3d;
            transition: fill 0.3s ease;
        }

        .copy-btn:hover svg {
            fill: #e8d875;
        }

        .copy-btn.copied svg {
            fill: #b8c77a;
        }

        .bank-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e8ecd8;
            position: relative;
        }

        .bank-row .copy-btn {
            position: static;
            margin-left: 10px;
        }

        .info-label {
            font-weight: 600;
            color: #6b7c3d;
            margin-bottom: 8px;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-value {
            color: #333;
            font-size: 1.1em;
            word-break: break-word;
        }

        .bank-details {
            background: linear-gradient(135deg, #f8f9f4 0%, #fafbf0 100%);
            padding: 20px;
            border: 2px solid #e8ecd8;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-top: 20px;
        }

        .bank-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e8ecd8;
        }

        .bank-row:last-child {
            border-bottom: none;
        }

        .bank-label {
            font-weight: 600;
            color: #6b7c3d;
            min-width: 200px;
        }

        .bank-value {
            color: #333;
            text-align: right;
            flex: 1;
        }

        .contact-info {
            background: linear-gradient(135deg, #6b7c3d 0%, #8b9556 50%, #b8c77a 100%);
            color: white;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            border-left: 5px solid #e8d875;
        }

        .contact-info h3 {
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 400;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-size: 1.1em;
            padding: 10px 0;
        }

        .contact-item svg {
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
            cursor: pointer;
        }

        .contact-item a:hover {
            border-bottom-color: #e8d875;
        }

        .contact-item span {
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .contact-item span:hover {
            border-bottom-color: #e8d875;
        }

        .single-info-item {
            position: relative;
            background: linear-gradient(135deg, #f8f9f4 0%, #fafbf0 100%);
            padding: 20px;
            border: 2px solid #e8ecd8;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        @media (max-width: 768px) {
            .header {
                padding: 35px 25px;
            }

            .header h1 {
                font-size: 1.8em;
            }

            .section {
                padding: 25px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .bank-row .copy-btn {
                position: absolute;
                top: 0;
                right: 0;
            }
            
            .bank-row {
                flex-direction: column;
            }

            .bank-label {
                margin-bottom: 8px;
            }

            .bank-value {
                text-align: left;
            }

            .language-toggle {
                top: 10px;
                right: 10px;
            }

            .language-toggle button {
                padding: 8px 15px;
                font-size: 0.9em;
            }
        }

        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }