* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        background-color: #f9f9f9;
        color: #333;
    }
    
    .sub-header {
        height: 50vh;
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/background.jpg);
        background-position: center;
        background-size: cover;
        text-align: center;
        color: #fff;
        position: relative;
    }
    
    nav {
        display: flex;
        padding: 2% 6%;
        justify-content: space-between;
        align-items: center;
    }
    
    nav img {
        width: 150px;
    }
    
    .nav-links {
        flex: 1;
        text-align: right;
    }
    
    .nav-links ul li {
        list-style: none;
        display: inline-block;
        padding: 8px 12px;
        position: relative;
    }
    
    .nav-links ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
    }
    
    .nav-links ul li::after {
        content: '';
        width: 0%;
        height: 2px;
        background: #f44336;
        display: block;
        margin: auto;
        transition: 0.5s;
    }
    
    .nav-links ul li:hover::after {
        width: 100%;
    }
    
    .dropdown-toggle {
        cursor: pointer;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.8);
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        border-radius: 5px;
    }
    
    .nav-links ul li:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu ul {
        padding: 10px 0;
    }
    
    .dropdown-menu ul li {
        display: block;
        text-align: left;
        padding: 8px 16px;
    }
    
    .dropdown-menu ul li:hover {
        background-color: rgba(244, 67, 54, 0.2);
    }
    
    .dropdown-menu ul li a {
        color: #fff;
    }
    
    .sub-header h1 {
        margin-top: 80px;
        font-size: 36px;
        font-weight: 600;
    }
    
    .form-container {
        max-width: 800px;
        margin: 50px auto;
        padding: 30px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .form-header h2 {
        color: #f44336;
        font-size: 28px;
        font-weight: 600;
    }
    
    .form-header p {
        color: #666;
        font-size: 14px;
        margin-top: 10px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }
    
    .form-group label .required {
        color: #f44336;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: #f44336;
        box-shadow: 0 0 5px rgba(244, 67, 54, 0.3);
        outline: none;
    }
    
    .row {
        display: flex;
        margin: 0 -10px;
    }
    
    .col {
        flex: 1;
        padding: 0 10px;
    }
    
    select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23555'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
    }
    
    .radio-group, .checkbox-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .radio-option, .checkbox-option {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .radio-option input, .checkbox-option input {
        margin-right: 5px;
        cursor: pointer;
    }
    
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #f44336;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .submit-btn:hover {
        background-color: #d32f2f;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
    }
    
    .footer {
        width: 100%;
        text-align: center;
        padding: 30px 0;
        background-color: #333;
        color: white;
    }
    
    .footer h4 {
        margin-bottom: 25px;
        margin-top: 20px;
        font-weight: 600;
    }
    
    .icons .fa{
        color: #f44336;
        margin: 0 13px;
        cursor: pointer;
        padding: 18px 0;
        font-size: 20px;
    }
    
    .footer-link {
        text-decoration: none;
        color: #999;
    }
    
    .fa-heart-o {
        color: #f44336;
    }
    
    /* Improved radio group styling */
    .radio-group {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 12px;
        margin-top: 10px;
    }
    
    /* Form submission status styles */
    .form-status {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        display: none;
    }
    
    .form-status.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .form-status.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    @media(max-width: 768px) {
        .nav-links ul li {
            display: block;
        }
        
        .nav-links {
            position: fixed;
            background: #f44336;
            height: 100vh;
            width: 200px;
            top: 0;
            right: -200px;
            text-align: left;
            z-index: 2;
            transition: 1s;
        }
        
        .nav-links ul {
            padding: 30px;
        }
        
        .dropdown-menu {
            position: relative;
            background-color: rgba(0, 0, 0, 0.1);
            width: 100%;
            box-shadow: none;
        }
        
        .row {
            flex-direction: column;
        }
        
        .col {
            margin-bottom: 15px;
        }
        
        .sub-header h1 {
            font-size: 24px;
        }
        
        .radio-group {
            grid-template-columns: 1fr;
        }
    }