body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #d32f2f;
            text-align: center;
        }
        .calculator-tabs {
            display: flex;
            background-color: #f8f9fa;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            margin-bottom: 0;
        }
        .tab {
            flex: 1;
            padding: 15px;
            background-color: #e9ecef;
            border: none;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .tab.active {
            background-color: #d32f2f;
            color: white;
        }
        .tab:hover {
            background-color: #b71c1c;
            color: white;
        }
        .calculator {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 0 0 8px 8px;
            padding: 25px;
            margin-bottom: 20px;
        }
        .input-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #495057;
        }
        input, select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 16px;
        }
        button {
            background-color: #d32f2f;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            margin-top: 10px;
        }
        button:hover {
            background-color: #b71c1c;
        }
        .result {
            background-color: #e8f5e8;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 4px solid #4caf50;
        }
        .info {
            background-color: #d1ecf1;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #17a2b8;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .vat-rates {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        .vat-rate-card {
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .vat-rate-card:hover, .vat-rate-card.selected {
            border-color: #d32f2f;
            background-color: #fff5f5;
        }
        .rate-percentage {
            font-size: 24px;
            font-weight: bold;
            color: #d32f2f;
        }
        .rate-label {
            margin-top: 5px;
            font-weight: bold;
        }
        .rate-examples {
            font-size: 12px;
            color: #6c757d;
            margin-top: 5px;
        }
        @media (max-width: 600px) {
            .calculator-tabs {
                flex-direction: column;
            }
            .tab {
                border-bottom: 1px solid #dee2e6;
            }
            .vat-rates {
                grid-template-columns: 1fr;
            }
        }
