.contact-two__content ul li i
{
font-size: 18px;
    margin-right: 15px;
}

.contact-title
{
    font-size: 38px;	
}

.maps-container iframe
{
    width: 100% !important;
}


/* Custom Menu Button Styling */
.menu-btns.light .custom-btn {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-title);
    line-height: 1.2;
}

.menu-btns.light .custom-btn-login {
    background: var(--theme-color1);
    border: 1px solid var(--border);
    color: var(--text-color1);
    box-shadow: var(--shadow);
    min-width: 100px;
    text-align: center;
}

.menu-btns.light .custom-btn-login:hover {
    background: var(--sub-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(19, 27, 36, 0.12);
}

.menu-btns.light .custom-btn-register {
    background: transparent;
    border: 1.5px solid var(--theme-color1);
    color: var(--theme-color1);
    margin-left: 8px;
    min-width: 100px;
}

.menu-btns.light .custom-btn-register:hover {
    background: var(--theme-color1);
    color: var(--text-color1);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Dark theme adjustments */
.header-area:not(.header-blur) .menu-btns.light .custom-btn-login {
    background: var(--sub-bg-dark);
    color: var(--text-color1);
}

.header-area:not(.header-blur) .menu-btns.light .custom-btn-register {
    border-color: var(--text-color1);
    color: var(--text-color1);
}

.header-area:not(.header-blur) .menu-btns.light .custom-btn-register:hover {
    background: var(--text-color1);
    color: var(--sub-bg-dark);
}

/* Hover effect */
.menu-btns.light .custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--border-light);
    opacity: 0;
    transition: var(--transition);
}

.menu-btns.light .custom-btn:hover::before {
    opacity: 0.1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu-btns.light .custom-btn {
        padding: 8px 16px;
        font-size: 11px;
        min-width: 90px;
    }
    
    .menu-btns.light .custom-btn-register {
        margin-left: 6px;
    }
}

/* Register page styles */
.register-types {
    background: var(--sub-bg2);
    border-radius: 15px;
    padding: 30px;
}

.register-type {
    background: var(--main-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
}

.register-type.active {
    border-color: var(--theme-color1);
    box-shadow: var(--shadow);
}

.register-type.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.register-type h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.register-type p {
    font-size: 14px;
    color: var(--paragraph);
    margin: 0;
}

.register-form-wrap {
    background: var(--main-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-form .form-group {
    margin-bottom: 10px;
}

.register-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-weight: 500;
}

.register-form .required {
    color: #FF4757;
}

.register-form .form-control {
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px 15px;
    font-size: 14px;
    transition: var(--transition);
}

.register-form .form-control:focus {
    border-color: var(--theme-color1);
    box-shadow: none;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--paragraph);
}

.form-check {
    margin: 0px 0;
}

.form-check-label {
    font-size: 14px;
    color: var(--paragraph);
}

.register-form .custom-btn {
    width: 100%;
    height: 50px;
    background: var(--theme-color1);
    color: var(--text-color1);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.register-form .custom-btn:hover {
    background: var(--sub-bg-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .register-form-wrap {
        padding: 20px;
    }
    
    .register-types {
        padding: 20px;
    }
}

/* Form section title */
.form-section-title {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Textarea styling */
.register-form textarea.form-control {
    height: auto;
    padding: 15px;
}

/* Register type click effect */
.register-type:not(.disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.register-type {
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-type.active {
    border-color: var(--theme-color1);
    background: var(--theme-color1);
    color: #fff;
}

.register-type.active h3,
.register-type.active p {
    color: #fff;
}

/* Custom Alert Styles */
.custom-alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.custom-alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
}

/* Success Alert */
.custom-alert-success {
    border: 1px solid rgba(46, 213, 115, 0.15);
}

.custom-alert-success::before {
    background: #2ed573;
}

.custom-alert-success i {
    color: #2ed573;
}

/* Danger Alert */
.custom-alert-danger {
    border: 1px solid rgba(255, 71, 87, 0.15);
}

.custom-alert-danger::before {
    background: #ff4757;
}

.custom-alert-danger i {
    color: #ff4757;
}

/* Alert Icon */
.custom-alert i:first-child {
    font-size: 22px;
    margin-right: 15px;
    opacity: 0.9;
}

/* Alert Message */
.custom-alert-message {
    flex: 1;
    color: #2d3436;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

/* Close Button */
.custom-alert-close {
    margin-left: 15px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-alert-close i {
    font-size: 14px;
    color: #636e72;
}

.custom-alert-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Alert Animation */
@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-alert {
    animation: alertSlideIn 0.3s ease forwards;
}

/* Alert Hide Animation */
.custom-alert.hiding {
    opacity: 0;
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .custom-alert {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .custom-alert i:first-child {
        font-size: 20px;
        margin-right: 12px;
    }

    .custom-alert-message {
        font-size: 14px;
    }

    .custom-alert-close {
        width: 20px;
        height: 20px;
    }

    .custom-alert-close i {
        font-size: 12px;
    }
}

/* Login Page Styles */
.login-form-wrap {
    background: var(--main-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.login-header {
    margin-bottom: 30px;
}

.login-header h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--paragraph);
    font-size: 15px;
}

.login-header a {
    color: var(--theme-color1);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.login-header a:hover {
    color: var(--sub-bg-dark);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--heading-color);
    font-weight: 500;
}

.login-form .form-control {
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.login-form .form-control:focus {
    border-color: var(--theme-color1);
    box-shadow: none;
}

.login-form .password-input {
    position: relative;
}

.login-form .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--paragraph);
}

.login-form .form-check-label {
    font-size: 14px;
    color: var(--paragraph);
}

.login-form .forgot-link {
    font-size: 14px;
    color: var(--theme-color1);
    text-decoration: none;
    transition: var(--transition);
}

.login-form .forgot-link:hover {
    color: var(--sub-bg-dark);
}

.login-form .custom-btn {
    width: 100%;
    height: 50px;
    background: var(--theme-color1);
    color: var(--text-color1);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.login-form .custom-btn:hover {
    background: var(--sub-bg-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .login-form-wrap {
        padding: 25px;
    }
    
    .login-header h3 {
        font-size: 20px;
    }
    
    .login-header p {
        font-size: 14px;
    }
    
    .login-form .form-control {
        height: 45px;
    }
}

/* Dashboard Genel Stiller */
.dashboard-section {
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

/* Sidebar Stiller */
.dashboard-sidebar {
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

.user-profile .user-avatar {
    width: 80px;
    height: 80px;
    background: rgba(var(--theme-color1-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.user-profile .user-avatar i {
    color: var(--theme-color1);
}

.user-profile h6 {
    color: var(--heading-color);
    font-weight: 600;
}

/* Menü Stiller */
.dashboard-menu .list-group-item {
    border: none;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px !important;
    color: var(--paragraph);
    transition: all 0.3s ease;
}

.dashboard-menu .list-group-item i {
    width: 20px;
    text-align: center;
}

.dashboard-menu .list-group-item:hover {
    background-color: rgba(var(--theme-color1-rgb), 0.1);
    color: var(--theme-color1);
}

.dashboard-menu .list-group-item.active {
    background-color: var(--theme-color1);
    color: #fff;
    border: none;
}

.dashboard-menu .list-group-item.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* İçerik Alanı Stiller */
.dashboard-content {
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

.construction-message {
    max-width: 500px;
    margin: 0 auto;
}

.construction-message .construction-icon i {
    color: var(--theme-color1);
}

.construction-message h3 {
    color: var(--heading-color);
    font-size: 24px;
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .dashboard-sidebar {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .dashboard-section {
        padding: 20px 0;
    }
    
    .dashboard-sidebar,
    .dashboard-content {
        padding: 15px;
    }
    
    .construction-message h3 {
        font-size: 20px;
    }
}


.job-list-container {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.job-list-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.job-list-heading {
    font-size: 20px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

.job-list-heading i {
    font-size: 24px;
    color: var(--theme-color1);
}

.job-list-empty {
    text-align: center;
    padding: 50px 20px;
}

.job-list-empty-icon {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 15px;
}

.job-list-empty h5 {
    color: var(--heading-color);
    margin-bottom: 10px;
}

.job-list-empty p {
    color: var(--paragraph);
    margin: 0;
}

.job-list-table .table {
    margin: 0;
}

.job-list-table th {
    font-weight: 500;
    color: var(--heading-color);
    border-bottom-width: 1px;
}

.job-list-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.job-list-btn-edit {
    background: var(--theme-color1);
    color: #fff;
}

.job-list-btn-delete {
    background: #dc3545;
    color: #fff;
}

.job-list-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.custom-btn-primary {
    background: var(--theme-color1);
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-btn-primary:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
}



.job-post-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.job-post-title h4 {
    font-size: 20px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

.job-post-title h4 i {
    font-size: 24px;
    color: var(--theme-color1);
}

.custom-btn-light {
    background: #fff;
    color: var(--paragraph);
    border: 1px solid var(--border);
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-btn-light:hover {
    background: var(--theme-color1);
    color: #fff;
    border-color: var(--theme-color1);
    transform: translateY(-2px);
}

.job-post-heading {
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 500;
}

textarea.form-control {
    min-height: 200px;
    resize: vertical;
}

.form-text {
    margin-top: 5px;
    font-size: 13px;
}



.company-dashboard-container {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.company-dashboard-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.company-dashboard-stat-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.company-dashboard-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.company-dashboard-stat-icon i {
    font-size: 24px;
    color: #fff;
}

.company-dashboard-stat-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.company-dashboard-stat-title {
    font-size: 14px;
    color: var(--paragraph);
    margin: 0;
}

.company-dashboard-section {
    margin-top: 30px;
}

.company-dashboard-section-title {
    font-size: 18px;
    color: var(--heading-color);
}

.company-dashboard-btn {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.company-dashboard-btn-sm {
    padding: 5px 10px;
    font-size: 13px;
}

.company-dashboard-btn-primary {
    background: var(--theme-color1);
    color: #fff;
    border: none;
}

.company-dashboard-btn-light {
    background: #fff;
    color: var(--paragraph);
    border: 1px solid var(--border);
}

.company-dashboard-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.company-dashboard-badge {
    background: var(--theme-color1);
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 50rem;
}

.company-dashboard-empty-icon {
    color: var(--border);
}

.company-dashboard-table {
    width: 100%;
    margin-bottom: 0;
}

.company-dashboard-table td {
    vertical-align: middle;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
}

.company-dashboard-table th {
    padding: 12px 15px;
    font-weight: 500;
    color: var(--heading-color);
    border-bottom: 2px solid var(--border);
}

.company-dashboard-table-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.company-dashboard-table-link:hover {
    color: var(--theme-color1);
}

.header-three-area .menubars-light span
{
    background: black !important;
}

/* Home Banner Styles */
.home-banner {
    position: relative;
    overflow: hidden;
}

.home-banner__wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-banner__slider-container {
    height: 100%;
    overflow: hidden;
}

.home-banner__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-banner__slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-banner__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-banner__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-banner__parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner__text-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 15px;
    margin-left: 10%;
    color: #fff;
}

.home-banner__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
	line-height: 55px;
}

.home-banner__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.2s;
}

.home-banner__button-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.home-banner__button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-banner__button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.home-banner__button i {
    margin-left: 10px;
}

/* Navigation and Pagination */
.home-banner__nav {
    position: absolute;
    bottom: 50px;
    left: 10%;
    z-index: 3;
    display: flex;
    gap: 20px;
}

.home-banner__nav-prev,
.home-banner__nav-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-banner__nav-prev:hover,
.home-banner__nav-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.home-banner__dots {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.home-banner__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-banner__dots .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Animation classes */
.swiper-slide-active .home-banner__title,
.swiper-slide-active .home-banner__description,
.swiper-slide-active .home-banner__button-wrap {
    opacity: 1;
    transform: translate(0);
}

/* Job List Styles */
.job-listings {
    padding: 50px 0;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.job-card-title {
    font-size: 22px;
    color: var(--heading-color);
    margin: 0;
}

.job-card-date {
    color: var(--paragraph);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.job-card-date i {
    margin-right: 8px;
    color: var(--theme-color1);
}

.job-card-content {
    margin-bottom: 20px;
}

.job-card-description {
    color: var(--paragraph);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-card-footer {
    display: flex;
    justify-content: flex-end;
}

.job-detail-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--theme-color1);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-detail-btn:hover {
    background: var(--sub-bg-dark);
    color: #fff;
    transform: translateY(-2px);
}

.job-detail-btn i {
    margin-left: 8px;
}

/* Job Detail Styles */
.job-detail {
    padding: 50px 0;
}

.job-detail-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.job-detail-title {
    font-size: 24px;
    color: var(--heading-color);
    margin: 0;
}

.job-detail-date {
    color: var(--paragraph);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.job-detail-date i {
    margin-right: 8px;
    color: var(--theme-color1);
}

.job-detail-content {
    margin-bottom: 20px;
}

.job-detail-description {
    color: var(--paragraph);
    line-height: 1.6;
}

.job-detail-footer {
    display: flex;
    justify-content: flex-end;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: var(--theme-color1);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: var(--sub-bg-dark);
    color: #fff;
    transform: translateY(-2px);
}

.job-apply-btn i {
    margin-left: 8px;
}
.page-detail p {
    margin: 15px 0 15px 0;
	text-align: justify;
}
.blog-details li {
    list-style: disc !important;
    margin-left: 15px;
}
.blog-details ol li {
    list-style: decimal !important;
}
.blog-details ol li::marker {
    font-weight: 700;
}

/* Cookie Consent Styles */
.cookie-consent-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px;
    display: none;
    border-radius: 8px;
    max-width: 90%;
    width: 500px;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-header h2 {
    font-size: 16px;
    color: var(--heading-color);
    margin: 0;
}

.cookie-consent-header p {
    color: var(--paragraph);
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.cookie-consent-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.cookie-option input[type="checkbox"] {
    margin: 0;
}

.cookie-option label {
    font-weight: 500;
    color: var(--heading-color);
    margin: 0;
}

.cookie-option p {
    display: none;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.cookie-btn-accept {
    background: var(--theme-color1);
    color: #fff;
    border: none;
}

.cookie-btn-save {
    background: transparent;
    color: var(--theme-color1);
    border: 1px solid var(--theme-color1);
}

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .cookie-consent-container {
        bottom: 10px;
        width: 95%;
    }
    
    .cookie-consent-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-consent-options {
        flex-direction: column;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

