* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

.header-area {
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    max-width: 200px;
    height: 160px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #4361ee;
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.contact-wrapper {
    display: flex;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contact-item i {
    font-size: 18px;
    color: #4361ee;
    margin-right: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 12px;
    color: #666;
}

.contact-number {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.get-started {
    margin-left: 20px;
    background-color: #4361ee;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.get-started:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

/* Media queries for responsive design */
@media screen and (max-width: 1200px) {
    .nav-item {
        margin: 0 10px;
    }
    
    .contact-item {
        margin-left: 15px;
    }
    
    .get-started {
        margin-left: 15px;
        padding: 8px 20px;
    }
}

@media screen and (max-width: 1024px) {
    .nav-link {
        font-size: 14px;
    }
    
    .contact-title {
        font-size: 11px;
    }
    
    .contact-number {
        font-size: 13px;
    }
    
    .get-started {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .logo img {
        max-width: 200px;
        height: 160px;
        
    }
}

@media screen and (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .nav-menu {
        flex-basis: 100%;
        order: 4;
        display: none;
        padding: 15px 0;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        justify-content: center;
        padding: 10px 0;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .contact-wrapper {
        order: 2;
        margin-left: auto;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .contact-item {
        margin: 5px 10px;
    }
    
    .get-started {
        margin: 10px 0 0 0;
        width: 100%;
        text-align: center;
        order: 5;
        display: none;
    }
    
    .get-started.active {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .contact-wrapper {
        display: none;
    }
    
    .logo {
        flex: 1;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .header-wrapper {
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        max-width: 150px;
    }
}