
    /* Стили для модального окна (Технические куки) */
    #cookieConsentTechOnly {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 10000; /* На уровень выше основного */
        display: none; /* Скрыто по умолчанию */
        border-top: 1px solid #e1e1e1;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .consent-content-tech {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .consent-text-tech {
        font-size: 14px;
        color: #444;
        line-height: 1.5;
        margin: 0;
    }
    .consent-text-tech b {
        color: #000;
    }
    .btn-accept-tech {
        background-color: #1a6d8a;
        color: white;
        border: none;
        padding: 12px 40px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .btn-accept-tech:hover {
        background-color: #145a73;
    }
    .policy-link-tech {
        color: #28a745;
        text-decoration: none;
        font-weight: 500;
    }
    .policy-link-tech:hover {
        text-decoration: underline;
    }
	
	