﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
}

.right-column {
    display: flex;
    flex-direction: column;
}

.info-section {
    margin-bottom: 20px;
}

.info-item {
    background: #f8fafc;
    border-left: 4px solid #4299e1;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 0 6px 6px 0;
    font-size: 0.8rem !important;
}

.payment-section {
    background: #edf2f7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.payment-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 0.8rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.payment-card {
    background: white;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.payment-icon {
    width: 40px;
    height: 20px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
}

.payment-name {
    font-size: 10px;
    color: #4a5568;
    font-weight: 500;
}

.fees-info {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
    padding: 10px;
    font-size: 12px;
    color: #742a2a;
}

    .fees-info strong {
        color: #982525;
    }

.search-section {
    background: #e6fffa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.search-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #234e52;
    font-size: 0.8rem;
}

.search-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.8rem !important;
}

.search-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem !important;
}

.search-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #bee3f8;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-size: 0.8rem !important;
}

    .search-input:focus {
        border-color: #4299e1;
    }

.search-label {
    min-width: 80px;
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.8rem !important;
}

.go-btn {
    background: #16588D;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.help-text {
    font-size: 0.8rem !important;
    color: #45505E;
    margin-top: 4px;
}

.contact-info {
    text-align: center;
    background: #f7fafc;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 15px;
}

    .contact-info strong {
        color: #2d3748;
    }

.captcha-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.checkbox {
    width: 18px;
    height: 18px;
    accent-color: #4299e1;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

    .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
    }

.warning {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.8rem !important;
    color: #873C0D;
    margin-bottom: 15px;
    line-height: 1.4;
}

main {
    background: #FFFFFF;
    height: auto;
    min-height: calc(100vh - 144px);
}

.help-link {
    font-size: inherit !important;
    color: #2C4D9B !important;
    min-height: 44px;
    padding: 20px 5px;
}

.skip-link {
    position: absolute;
    top: -55px;
    left: 8px;
    background: #000;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #fff;
    transition: top 0.2s ease;
}

    .skip-link:focus {
        top: 8px;
        outline: 3px solid #005fcc;
        outline-offset: 2px;
    }

    .skip-link:hover {
        background: #333;
    }

.content a,
.serverMsg {
    font-size: 0.8rem !important;
}

#main-taxinq {
    min-height: calc(100vh - 150px);
}


@media(min-width: 1900px) {
    .container {
        max-width: 1650px !important;
    }

    .header {
        padding: 15px;
    }

        .header h1 {
            font-size: 3rem;
        }

    #main-taxinq {
        min-height: calc(100vh - 160px);
    }

    .footer {
        font-size: 1.2rem;
        padding-top: 20px;
        height: 70px;
    }

    .content {
        max-width: 100%;
    }

    .info-item {
        font-size: 1.5rem !important;
        padding: 15px;
        margin-bottom: 1rem !important;
    }

    .payment-section {
        margin-bottom: 1rem !important;
    }

    .payment-title {
        font-size: 1.2rem;
    }

    .container-cc {
        width: 150px;
        height: 12em;
    }

        .container-cc img {
            width: 150px;
        }

    .amex img {
        width: 160px;
    }

    .fees-info {
        font-size: 1.5rem;
    }

    .contact-info {
        font-size: 1.5rem;
    }

    .content a {
        font-size: 1.5rem !important;
    }

    .search-title {
        font-size: 1.5rem !important;
    }

    .errorMsg {
        font-size: 1.5rem;
        padding-bottom: 1rem !important;
    }

    .search-label, .serverMsg, .warning,
    .search-input, .go-btn {
        font-size: 1.5rem !important;
    }

    .help-text {
        font-size: 1.5rem !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.errorMsg {
    font-size: 0.8rem;
}
