/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
}

.logo-image {
    height: 90px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.nav-links li {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Button Reset for all button elements */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font: inherit !important;
    color: inherit !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: normal !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #FF3C00 100%) !important;
    color: #ffffff !important;
    padding: 10px 15px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-align: center !important;
    display: inline-block !important;
    box-shadow: 0 2px 10px rgba(255, 60, 0, 0.2) !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: none !important;
    cursor: pointer !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    line-height: normal !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:active {
    background: linear-gradient(135deg, #ff5e1f 0%, #e63500 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Specific style for the consultation button */
.cta-button.consultation {
    background: linear-gradient(135deg, #4A6DE5 0%, #2E3192 100%) !important;
    box-shadow: 0 2px 10px rgba(74, 109, 229, 0.2) !important;
}

.cta-button.consultation:hover {
    background: linear-gradient(135deg, #3a5bd9 0%, #252a75 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 109, 229, 0.3) !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark);
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.menu-toggle:hover {
    background-color: rgba(74, 109, 229, 0.1);
    color: var(--primary);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(74, 109, 229, 0.1) 0%, rgba(46, 49, 146, 0.1) 100%);
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF3C00 100%);
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(255, 60, 0, 0.2);
    transition: all 0.3s ease;
}

.button-primary:hover,
.button-primary:focus,
.button-primary:active {
    background: linear-gradient(135deg, #ff5e1f 0%, #e63500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.3);
    color: #ffffff !important;
    text-decoration: none !important;
}

.button-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 58, 58, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 58, 58, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 58, 58, 0);
    }
}
