
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: linear-gradient(145deg, #e9f0f5 0%, #d9e2ec 100%);
        font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        padding: 2rem 1rem;
        color: #1a2c3e;
    }

    .grant-container {
        max-width: 1100px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 2rem;
        box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
        overflow: hidden;
        transition: all 0.2s ease;
    }

    .grant-header {
        background: #003d2b;
        padding: 2rem 2rem 1.5rem 2rem;
        color: white;
        text-align: center;
        border-bottom: 6px solid #ffb347;
    }

    .grant-header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: -0.3px;
        word-break: break-word;
    }

    .grant-header h1 small {
        font-size: 1rem;
        font-weight: 400;
        display: block;
        margin-top: 0.5rem;
        opacity: 0.85;
    }

    .grant-badge {
        background: #ffb347;
        display: inline-block;
        padding: 0.3rem 1rem;
        border-radius: 40px;
        font-size: 0.8rem;
        font-weight: bold;
        color: #003d2b;
        margin-top: 1rem;
        text-transform: uppercase;
    }

    .info-grant {
        background: #fef7e0;
        border-left: 8px solid #ffb347;
        margin: 1.5rem 2rem;
        padding: 1.2rem 1.8rem;
        border-radius: 1rem;
        font-size: 0.98rem;
        line-height: 1.5;
        color: #2c3e2f;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .info-grant p {
        margin-bottom: 0.5rem;
    }

    .info-grant strong {
        color: #003d2b;
    }

    .grant-form {
        padding: 0 2rem 2rem 2rem;
    }

    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        flex: 1 1 280px;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

    .form-group.full-width {
        flex: 1 1 100%;
    }

    label {
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #1e4a3b;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    label i {
        font-weight: normal;
        font-size: 0.9rem;
    }

    input, select, textarea {
        padding: 0.9rem 1rem;
        border: 1.5px solid #cfdfda;
        border-radius: 1.2rem;
        font-size: 1rem;
        font-family: inherit;
        background: #fefefe;
        transition: all 0.2s;
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #ffb347;
        box-shadow: 0 0 0 3px rgba(255, 180, 71, 0.25);
        background: #fffdf9;
    }

    .file-hint {
        font-size: 0.7rem;
        color: #5f6c6f;
        margin-top: 0.25rem;
    }

    hr.divider {
        margin: 2rem 0 1.5rem;
        border: none;
        height: 2px;
        background: linear-gradient(to right, #cfdfda, transparent);
    }

    .doc-section {
        background: #fafcfb;
        padding: 1.2rem 1.5rem;
        border-radius: 1.5rem;
        margin-top: 0.8rem;
        border: 1px solid #e2ede8;
    }

    .doc-title {
        font-weight: 800;
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #003d2b;
        border-left: 4px solid #ffb347;
        padding-left: 12px;
    }

    .double-upload {
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
        margin-top: 0.5rem;
    }

    .upload-card {
        flex: 1;
        background: white;
        border-radius: 1rem;
        padding: 0.8rem;
        border: 1px dashed #bdd3cb;
    }

    .upload-card label {
        font-size: 0.8rem;
        text-transform: none;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    button {
        background: #003d2b;
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 3rem;
        width: 100%;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 1.5rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    button:hover:not(:disabled) {
        background: #ff8c1a;
        transform: translateY(-2px);
        box-shadow: 0 12px 18px -8px rgba(0,0,0,0.2);
    }

    button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .required-star {
        color: #d9534f;
        font-size: 1rem;
        margin-left: 2px;
    }

    .error-msg {
        color: #c0392b;
        font-size: 0.7rem;
        margin-top: 5px;
        display: none;
    }

    input.error, select.error, .error-input {
        border-color: #e07c6c !important;
        background-color: #fff6f5;
    }

    .toast-success {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #1e4a3b;
        color: white;
        padding: 1rem 2rem;
        border-radius: 60px;
        font-weight: bold;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        z-index: 2000;
        display: none;
        backdrop-filter: blur(4px);
        font-size: 0.95rem;
        text-align: center;
        max-width: 90%;
    }

    .toast-error {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #7b1e1e;
        color: white;
        padding: 1rem 2rem;
        border-radius: 60px;
        font-weight: bold;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        z-index: 2000;
        display: none;
        backdrop-filter: blur(4px);
        font-size: 0.95rem;
        text-align: center;
        max-width: 90%;
    }

    @media (max-width: 750px) {
        .grant-form {
            padding: 0 1rem 1.5rem 1rem;
        }
        .info-grant {
            margin: 1rem;
        }
        .grant-header h1 {
            font-size: 1.6rem;
        }
    }

    footer {
        text-align: center;
        font-size: 0.7rem;
        padding: 1rem;
        background: #f1f5f8;
        color: #4a5b66;
        border-top: 1px solid #e0ede8;
    }