﻿html {
    font-size: 16px;
}
:root {
    --primary: #0056b3;
    --primary-light: #e6f0ff;
    --secondary: #ff9e1b;
    --secondary-light: #fff5e6;
    --light: #f9fbff;
    --dark: #1a2b4c;
    --text: #333;
    --text-light: #6c757d;
    --radius: 10px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
    line-height: 1.6;
    font-size: 16px;
}

.cstmHdr {
    background: linear-gradient(135deg, var(--primary), #003d82);
    color: white;
    padding: 40px 0 46px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hrd-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cstmHdr h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}
.policy-header p {
    margin: 9px 0 0 0;
    font-size: 19px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
}
.policy-header {
    height: auto;
    padding: 70px 0;
}
.cstmHdr p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
    margin: 0 auto;
}

.cstmpage {
    padding: 60px 0 40px 0;
}
.cstmpage .card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.cstmpage .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.cstmpage h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}

.cstmpage h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.contact-option {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

    .contact-option:hover {
        background: #d9e7ff;
        transform: translateX(5px);
    }

.contact-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

    .contact-details strong {
        display: block;
        font-size: 18px;
        margin-bottom: 5px;
    }

.faq-container {
    display: grid;
    gap: 15px;
}

.cstmpage .faq {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

    .cstmpage .faq:hover {
        background: var(--secondary-light);
        transform: translateX(5px);
    }

    .cstmpage .faq h3 {
        margin-top: 0;
        color: var(--primary);
        font-size: 18px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .cstmpage .faq h3::before {
            content: "?";
            background: var(--secondary);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 14px;
            font-weight: bold;
        }

.cstmpage form {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
}

.cstmpage .form-group {
    margin-bottom: 20px;
}

.cstmpage label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.cstmpage input, .cstmpage textarea, .cstmpage select {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius);
    border: 1px solid #d1d9e6;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.cstmpage input:focus, .cstmpage textarea:focus, .cstmpage select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.cstmpage textarea {
    min-height: 120px;
    resize: vertical;
}

.cstmpage button {
    margin-top: 10px;
    background: var(--primary);
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cstmpage button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cstmpage button::after {
    content: "→";
    margin-left: 8px;
    transition: var(--transition);
}

.cstmpage button:hover::after {
    transform: translateX(3px);
}

.special-assistance {
    background: var(--secondary-light);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .cstmHdr h1 {
        font-size: 28px;
    }

    .cstmHdr p {
        font-size: 16px;
    }

    .card {
        padding: 20px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-option {
        padding: 15px;
    }
}
@media (max-width: 767px) {
.cstmpage .card {
    padding: 20px 15px;
}
.cstmpage form {
    padding: 20px 14px;
}
.policy-header h1 {
    font-size: 20px;
}
.policy-header p {
    font-size: 15px;
}
.policy-header {
    height: auto;
    padding: 40px 0;
}



}