* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/*  Navbar stays your color */
.navbar {
    width: 100%;
    height: 55px;
    margin: auto;
    background-color: #ba399d;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 70px;
}

.icon {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.logo {
    color: #000000;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    margin-right: 1400px;
}

/*  Search bar in navbar */
/*.search input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}*/

/*.search .btn {
    padding: 5px 12px;
    border: none;
    background: #0a7ea4;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
} */

/*  Hero section */
.hero {
    text-align: center;
    margin: 40px 0;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.hero input {
    padding: 10px 20px;
    width: 60%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

/*  Support Grid  */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Make whole card clickable, no underline */
.support-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    border-color: #052a37;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}


.support-card:hover {
    border-color: rgb(167, 29, 149);
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
    cursor: pointer;
    transform: scale(1.03); /* subtle pop effect */
}

.support-card i {
    font-size: 40px;
    color: rgb(107, 11, 94);
    margin-bottom: 15px;
}

.support-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: #444;
}

/*  Keep your old custom button (if needed separately) */
.getting-started {
    background-color: #fff;
    border-radius: 12px;
    font-family: 'Times New Roman', Times, serif;
}

/* Inline text + icon version if you still want it */
.getting-started i {
    padding-top: 25px;
    
}

.getting-started h3 {
    margin-left: 10px;
    margin-top: 10px;
   
}

.getting-started p {
    margin-top: 10px;
    margin-left: 10px;  
} 


.using-brex i {
    padding-top: 25px;
    font-size: 30px !important;
}

.using-brex h3 {
  margin-left: 10px;
  margin-top: 10px;
}

.using-brex p {
  margin-top: 10px;
  margin-left: 10px;  
}

.using-brex i {
  font-size: 20px;
  line-height: 1;
}

.updates i {
    padding-top: 25px;
}

.updates h3 {
    margin-left: 10px;
    margin-top: 10px
}

.updates p {
    margin-top: 10px;
    margin-left: 10px;  
}

/* ==========================
   Support Page Styles
   ========================== */

/* General content area */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
}

/* Headings */
.content h2 {
    font-size: 26px;
    color: #052a37;
    margin-bottom: 20px;
    text-align: center;
}

.content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #a71d95; /* match hover pink */
}

/* Paragraphs */
.content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

/* Lists */
.content ol, 
.content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 8px;
}

/* Update sections (for updates.html) */
.update {
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #ba399d; /* navbar pink */
    background: #fdf4fa; /* subtle light pink */
    border-radius: 8px;
}

.update h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #052a37;
}

.update small {
    font-size: 14px;
    color: #777;
}

/* Tips/Callouts  */
.tip-box {
    padding: 15px;
    background: #f1faff;
    border: 1px solid #0a7ea4;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 15px;
}

.contact-box {
    padding: 20px;
    background: none;
    margin-top: 166px;
    margin-left: 80px;
    
}


