/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #333333;
    background-color: #ffffff;
}

/* Common Elements */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #00aeff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0088cc;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 5px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 400;
}

h6 {
    font-size: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Form Elements */
input, button, textarea, select {
    font-family: 'Montserrat', sans-serif;
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Normal button - Corporate Blue */
button {
    background-color: #00aeff;
    color: #ffffff;
    cursor: pointer;
    border: 2px solid transparent;
}

button:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
}


/* Input Fields */
input, textarea, select {
    border: 2px solid #efefef;
    background-color: #ffffff;
    color: #333333;
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    border-color: #00aeff;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid #00aeff;
    outline-offset: 2px;
}

/* Selection styling */
::selection {
    background-color: #00aeff;
    color: #ffffff;
}

/* Mobile Responsive - Media Query for screens up to 768px */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 1rem;
    }
    
    /* Body font size adjustment */
    body {
        font-size: 14px;
    }
    
    /* Form Elements - Better mobile touch targets */
    input, button, textarea, select {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px; /* iOS recommended touch target size */
    }
    
    /* Button improvements for mobile */
    button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    button:hover {
        transform: none; /* Remove hover transform on mobile */
    }
}