* {                        /* Faltu margins hatane ke liye */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar - Ek line mein content lane ke liye flex use kiya */
.navbar {
 display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    border-bottom: 1px solid black;  
}

.brand { font-size: 22px; font-weight: bold; }
.menu a { margin-left: 20px; text-decoration: none; color: black; font-weight: bold; }

/*  Main Layout Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

/* Hero/Header Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    border-bottom: 1px solid black;
}

.hero h1 { font-size: 80px; font-weight: 900; }
.hero .subtitle { font-size: 25px; font-weight: bold; margin-bottom: 20px; }
.hero-links a { color: black; margin: 0 10px; }
.dashed-box { border: 1px dashed black; padding: 5px 10px; }

/* Content Grid 3 columns banane ke liye */
.content-grid {
    display: flex;
    border-bottom: 1px solid black;
}

.column {
    flex: 1;
    padding: 40px;
}

.middle-col {
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.column h3 { margin-bottom: 20px; }
.column ul { padding-left: 20px; line-height: 2; }
.resource-links a { display: block; color: black; font-weight: bold; margin-bottom: 10px; }

/*  Color Palette Dots */
.dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.color-row { margin-bottom: 10px; font-weight: bold; }


.cards-section {    /* Bottom Cards */
    display: flex;
    padding: 50px;
    gap: 20px;
}

.card {
    flex: 1;
    padding: 20px;
    min-height: 150px;
}

.black-card { background: black; color: white; }
.gray-card { background: #444; color: white; }
.white-card { border: 1px solid black;} 





/* Divider Line for Reference Image Section */
.divider-border {
    border-top: 1px solid black;
    padding: 60px 0;
    text-align: center;
    background: white;
}

.ref-label {
    font-size: 38px;
    font-family: serif;
    font-weight: 900;
}

/* Help Center Section Inside Original Border */
.hc-box {
    width: 100%;
    border-top: 1px solid black;
}

/* Header Styles */
.hc-top-bar {
    display: flex;
    justify-content: space-between;
    background: black;
    color: white;
    padding: 20px 30px;
}

.btn-sub-req { background: transparent; border: 1px solid white; color: white; padding: 7px 15px; border-radius: 4px; cursor: pointer; }
.btn-log-in { background: #4C5FD5; border: none; color: white; padding: 8px 25px; border-radius: 4px; margin-left: 10px; cursor: pointer; }

/* Hero Styles */
.hc-hero-purple {
    background: #dadbf1;
    padding: 100px 20px;  
    text-align: center;
    border-bottom: 1px solid black;
}

.hc-hero-purple h1 { font-size: 60px; margin-bottom: 25px; }
.hc-search-wrapper { position: relative; max-width: 680px; margin: 0 auto; }
.hc-search-wrapper input { width: 100%; padding: 18px; border: 1px solid black; font-size: 17px; }
.hc-arrow-icon { position: absolute; right: 20px; top: 18px; font-size: 22px; }

/* Grid Layout css Strict Lining */
.hc-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.hc-grid-item { padding: 55px 45px; }
.item-flex { display: flex; gap: 20px; }
.item-emoji { font-size: 40px; }
.item-info h3 { margin-bottom: 10px; font-size: 22px; }
.item-info p { line-height: 1.6; color: #333; margin-bottom: 10px; font-size: 17px; }
.item-info a { color: #4C5FD5; text-decoration: none; font-weight: bold; }

/* Grid Line Utilities (Matches your top design) */
.b-right { border-right: 1px solid black; }
.b-bottom { border-bottom: 1px solid black; }

/* Dark Footer Styling */
.hc-footer-black {
    background: black;
    color: white;
    padding: 80px 40px;
}

.hc-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.f-column h4 { font-size: 22px; margin-bottom: 25px; }
.f-column a { display: block; color: white; text-decoration: none; margin-bottom: 10px; font-size: 15px; }
.f-contact-details { margin-top: 40px; }

