.header-button {
    display: flex;
    align-items: center;
    margin-left: 20px;
 }
 
 .login-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: #fff;
    color: #087CE3;
    border: 2px solid #087CE3;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8,124,227,0.1);
    white-space: nowrap;
 }
 
 .login-button span {
    margin-right: 8px;
    font-size: 15px;
 }
 
 .login-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
 }
 
 .login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8,124,227,0.2);
    color: #087CE3;
    text-decoration: none;
    background: #f8faff;
 }
 
 .register-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    white-space: nowrap;
 }
 
 .register-button span {
    margin-right: 8px;
    font-size: 15px;
 }
 
 .register-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
 }
 
 .register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    color: #fff;
    text-decoration: none;
 }
 
 .register-button:hover i {
    transform: translateX(5px);
 }
 
 /* Header Scroll Styles */
 .site-header.sticky-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 }
 
 .site-header.sticky-header .bottom-header {
    padding: 10px 0;
 }
 
 .site-header.sticky-header .white-logo {
    display: none;
 }
 
 .site-header.sticky-header .black-logo {
    display: block;
 }
 
 .site-header.sticky-header .register-button {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: #fff;
    margin-bottom: 5px;
 }
 
 .site-header.sticky-header .login-button {
    background: #fff;
    color: #087CE3;
    border: 2px solid #087CE3;
 }
 
 /* Responsive Styles */
 @media (max-width: 768px) {
    .header-button {
       margin-left: 10px;
    }
    
    .login-button, .register-button {
       padding: 8px 20px;
    }
    
    .login-button span, .register-button span {
       font-size: 14px;
    }
 }
 
 @media (max-width: 576px) {
    .login-button span, .register-button span {
       font-size: 13px;
    }
    
    .login-button, .register-button {
       padding: 8px 15px;
    }
 }
 
 /* Top Header Styles */
 .top-header {
     background: transparent;
     padding: 10px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }
 
 .header-contact-info ul {
     display: flex;
     gap: 20px;
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 .header-contact-info ul li {
     display: flex;
     align-items: center;
 }
 
 .header-contact-info ul li i {
     margin-right: 8px;
     font-size: 16px;
 }
 
 .header-social.social-links ul {
     display: flex;
     gap: 15px;
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 .header-social.social-links ul li a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(255, 107, 0, 0.1);
     transition: all 0.3s ease;
 }
 
 .header-social.social-links ul li a:hover {
     background: rgba(255, 107, 0, 0.2);
     transform: translateY(-2px);
 }
 
 .header-social.social-links ul li a i {
     font-size: 16px;
 }
 
 .offcanvas-icon {
     margin-left: 20px;
 }
 
 .offcanvas-icon a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: rgba(255, 107, 0, 0.1);
     transition: all 0.3s ease;
 }
 
 .offcanvas-icon a:hover {
     background: rgba(255, 107, 0, 0.2);
 }
 
 .offcanvas-icon a i {
     font-size: 20px;
     color: white;
 }
 
 @media (max-width: 991px) {
     .header-contact-info {
         display: none;
     }
     
     .header-social.social-links {
         margin-right: 15px;
     }
 }
 
 /* Homepage Styles */
 .home .header-contact-info ul li a {
     color: #fff;
     transition: all 0.3s ease;
 }
 
 .home .header-contact-info ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
 }
 
 .home .header-social.social-links ul li a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .home .header-social.social-links ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.1);
 }
 
 .home .offcanvas-icon a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .home .offcanvas-icon a:hover {
     color: rgba(255, 255, 255, 0.8);
     background: rgba(255, 255, 255, 0.1);
 }
 
 /* Login, Register, Privacy and Terms Pages Styles */
 .login-page .header-contact-info ul li a,
 .register-page .header-contact-info ul li a,
 .privacy-page .header-contact-info ul li a,
 .terms-page .header-contact-info ul li a {
     color: #FF6B00;
     transition: all 0.3s ease;
 }
 
 .login-page .header-contact-info ul li a:hover,
 .register-page .header-contact-info ul li a:hover,
 .privacy-page .header-contact-info ul li a:hover,
 .terms-page .header-contact-info ul li a:hover {
     color: #FF8533;
 }
 
 .login-page .header-social.social-links ul li a,
 .register-page .header-social.social-links ul li a,
 .privacy-page .header-social.social-links ul li a,
 .terms-page .header-social.social-links ul li a {
     color: #FF6B00;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .login-page .header-social.social-links ul li a:hover,
 .register-page .header-social.social-links ul li a:hover,
 .privacy-page .header-social.social-links ul li a:hover,
 .terms-page .header-social.social-links ul li a:hover {
     color: #FF8533;
     transform: translateY(-2px);
     background: rgba(255, 107, 0, 0.1);
 }
 
 .login-page .offcanvas-icon a,
 .register-page .offcanvas-icon a,
 .privacy-page .offcanvas-icon a,
 .terms-page .offcanvas-icon a {
     color: #FF6B00;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .login-page .offcanvas-icon a:hover,
 .register-page .offcanvas-icon a:hover,
 .privacy-page .offcanvas-icon a:hover,
 .terms-page .offcanvas-icon a:hover {
     color: #FF8533;
     background: rgba(255, 107, 0, 0.1);
 }
 
 /* Other Pages Styles */
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .header-contact-info ul li a {
     color: #fff;
     transition: all 0.3s ease;
 }
 
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .header-contact-info ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
 }
 
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .header-social.social-links ul li a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .header-social.social-links ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.1);
 }
 
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .offcanvas-icon a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 body:not(.home):not(.login-page):not(.register-page):not(.privacy-page):not(.terms-page) .offcanvas-icon a:hover {
     color: rgba(255, 255, 255, 0.8);
     background: rgba(255, 255, 255, 0.1);
 }
 
 /* Sticky Header Styles */
 .site-header.sticky-header .top-header {
     background: #fff;
     border-bottom: 1px solid rgba(0,0,0,0.05);
 }
 
 .site-header.sticky-header .header-contact-info ul li a,
 .site-header.sticky-header .header-social.social-links ul li a,
 .site-header.sticky-header .offcanvas-icon a {
     color: #FF6B00;
 }
 
 .site-header.sticky-header .header-social.social-links ul li a:hover,
 .site-header.sticky-header .offcanvas-icon a:hover {
     background: rgba(255, 107, 0, 0.1);
 }
 
 /* Special Pages Styles (Login, Register, Privacy, Terms) */
 .special-page .header-contact-info ul li a {
     color: #FF6B00 !important;
     transition: all 0.3s ease;
 }
 
 .special-page .header-contact-info ul li a:hover {
     color: #FF8533 !important;
 }
 
 .special-page .header-social.social-links ul li a {
     color: #FF6B00 !important;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .special-page .header-social.social-links ul li a:hover {
     color: #FF8533 !important;
     transform: translateY(-2px);
     background: rgba(255, 107, 0, 0.1);
 }
 
 .special-page .offcanvas-icon a {
     color: #FF6B00 !important;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .special-page .offcanvas-icon a:hover {
     color: #FF8533 !important;
     background: rgba(255, 107, 0, 0.1);
 }
 
 /* Default Pages Styles */
 .header-contact-info ul li a {
     color: #fff;
     transition: all 0.3s ease;
 }
 
 .header-contact-info ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
 }
 
 .header-social.social-links ul li a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .header-social.social-links ul li a:hover {
     color: rgba(255, 255, 255, 0.8);
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.1);
 }
 
 .offcanvas-icon a {
     color: #fff;
     transition: all 0.3s ease;
     background: transparent;
 }
 
 .offcanvas-icon a:hover {
     color: rgba(255, 255, 255, 0.8);
     background: rgba(255, 255, 255, 0.1);
 } 