 #cookie-settings-btn {
     position: fixed;
     bottom: 20px;
     left: 20px;
     z-index: 9999;
 }

 #cookie-settings-btn button {
     background: #0094d8;
     color: #fff;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
 }

 #cookie-modal {
     position: fixed;
     bottom: 90px;
     left: 20px;
     width: 340px;
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
     display: none;
     z-index: 9999;
 }

 .cookie-modal-content {
     padding: 20px;
 }

 .cookie-item {
     border-top: 1px solid #eee;
     margin-top: 10px;
 }

 .cookie-header {
     display: flex;
     justify-content: space-between;
     cursor: pointer;
     font-weight: 600;
     padding: 10px 0;
 }

 .cookie-body {
     display: none;
     font-size: 13px;
     color: #555;
     padding-bottom: 10px;
 }

 .cookie-body label {
     display: block;
     margin-top: 8px;
 }

 .cookie-actions {
     margin-top: 15px;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .cookie-info {
     margin-top: 5px;
     display: flex;
     flex-direction: column;
     text-align: center;
 }

 .cookie-actions button {
     width: 100%;
     padding: 14px 12px;
     font-size: 14px;
     line-height: 1.4;
     white-space: normal;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 @media (max-width: 768px) {
     #cookie-settings-btn {
         bottom: 80px;
         left: 15px;
     }

     #cookie-modal {
         bottom: 140px;
         left: 15px;
         width: calc(100% - 30px);
     }
 }

 @media (max-width: 768px) {
     #cookie-settings-btn button {
         width: 55px;
         height: 55px;
         font-size: 22px;
     }
 }