* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    html {
    scroll-behavior: smooth;
    }
    
    html, body, input, textarea, button, select {
        font-family: 'Poppins', sans-serif;
      }

    body {
    font-family: Arial, sans-serif;
    background-color: #54575a;
    color: #ffffff;
    line-height: 1.5;
    }
    
    .hero {
    position: relative;
    min-height: 100vh;
    background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("hero_photo.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 120px;
    }
    
    .hero-content {
    max-width: 900px;
    width: 100%;
    }
    
    .hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    }
    
    .cta-btn {
    background-color: #f47a20;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 20px 44px;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 20px;
    }
    
    .cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    }
    
    .response-time {
    font-size: 1.2rem;
    }
    
    .application-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 80px 40px;
    scroll-margin-top: 40px;
    }
    
    .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f47a20;
    scroll-margin-top: 40px;
    }
    
    form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    }
    
    .form-group,
    section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    }
    
    label,
    .form-group p,
    section p {
    font-size: 1.1rem;
    font-weight: 600;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="file"],
    textarea {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 14px;
    background: #d9d9d9;
    color: #111;
    font-size: 1rem;
    }
    
    textarea {
    resize: vertical;
    min-height: 140px;
    }
    
    input[type="range"] {
    width: 100%;
    accent-color: #f47a20;
    cursor: pointer;
    }
    
    #hourValue {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
    }
    
    .days-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    }
    
    .day-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 16px 24px;
    background: #d9d9d9;
    color: #444;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.2s ease;
    }
    
    .day-box input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    }
    
    .day-box:has(input:checked) {
    background-color: #f47a20;
    color: #fff;
    }
    
    .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    }
    
    hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.18);
    margin: 10px 0;
    }
    
    .submit-btn {
    background-color: #f47a20;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 18px 34px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: 0.3s ease;
    }
    
    .submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    }
    
    .consent-group {
    margin-top: 10px;
    }
    
    .consent-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.7;
    cursor: pointer;
    }
    
    .consent-box input[type="checkbox"] {
    margin-top: 6px;
    width: 20px;
    height: 20px;
    accent-color: #f47a20;
    flex-shrink: 0;
    }
    
    .consent-box a {
    color: #f47a20;
    text-decoration: underline;
    }

    .hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
    }
    
    @media (max-width: 768px) {
    .hero {
    min-height: 90vh;
    padding: 30px 20px 80px;
    }
    
    .hero h1 {
    font-size: 2.6rem;
    }
    
    .cta-btn {
    width: 100%;
    max-width: 280px;
    font-size: 1.2rem;
    padding: 18px 28px;
    }
    
    .application-section {
    padding: 60px 20px;
    }
    
    .form-grid {
    grid-template-columns: 1fr;
    }
    
    .day-box {
    flex: 1 1 calc(50% - 14px);
    min-width: 140px;
    text-align: center;
    }
    }
    
    @media (max-width: 480px) {
    .day-box {
    flex: 1 1 100%;
    }
    
    .section-title {
    font-size: 1.7rem;
    }
    }