/* --- Financial Statements Section Styling --- */
.financial-statements-section {
    background: #f8faff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(52, 152, 219, 0.08);
    padding: 32px 24px 28px 24px;
    margin: 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1.5px solid #e3eaf3;
}
.financial-statements-section h2 {
    color: #2c3e50;
    font-size: 2.1rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.numbers-source {
    margin: -8px 0 18px 0;
    color: #34495e;
    font-size: 0.98rem;
}

.numbers-source__mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.financial-statements-section label {
    font-weight: 600;
    color: #34495e;
    margin-right: 8px;
}
.financial-statements-section select {
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid #b2bec3;
    font-size: 1rem;
    margin-right: 12px;
    background: #fff;
    color: #2c3e50;
    transition: border-color 0.2s;
}
.financial-statements-section select:focus {
    border-color: #3498db;
    outline: none;
}
.financial-statements-section button {
    background: linear-gradient(90deg, #3498db 60%, #8e44ad 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 9px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.financial-statements-section button:hover {
    background: linear-gradient(90deg, #217dbb 60%, #6c3483 100%);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.13);
}
#financialStatementDisplay {
    margin-top: 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(44, 62, 80, 0.07);
    padding: 18px 12px 12px 12px;
    min-height: 40px;
    font-size: 1.08rem;
    color: #222;
    overflow-x: auto;
}
#financialStatementDisplay table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    background: #fafdff;
}

#financialStatementDisplay th {
    font-weight: 700;
    color: #2c3e50;
    width: 55%;
}

#financialStatementDisplay tbody tr:hover th,
#financialStatementDisplay tbody tr:hover td {
    background: #f1f6ff;
}
#financialStatementDisplay th, #financialStatementDisplay td {
    padding: 8px 14px;
    border-bottom: 1px solid #e3eaf3;
    text-align: left;
}
#financialStatementDisplay tr:last-child td {
    border-bottom: none;
}
#financialStatementDisplay h3 {
    margin-top: 0;
    color: #3498db;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

#financialStatementDisplay .statement-meta {
    color: #fff9f9;
    margin-bottom: 6px;
}

#financialStatementDisplay .statement-note {
    color: #667085;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

#financialStatementDisplay .statement-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 8px;
    background: #fafdff;
    border: 1px solid #e3eaf3;
    border-radius: 10px;
    overflow: hidden;
}

#financialStatementDisplay .statement-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f1f6ff;
    color: #2c3e50;
    font-weight: 800;
    padding: 10px 14px;
    border-bottom: 1px solid #e3eaf3;
    text-align: left;
}

#financialStatementDisplay .statement-table thead th.statement-amount {
    text-align: right;
}

#financialStatementDisplay .statement-section th {
    background: #eef4ff;
    color: #22304a;
    font-weight: 900;
    letter-spacing: 0.3px;
    padding: 10px 14px;
    border-top: 1px solid #e3eaf3;
    border-bottom: 1px solid #e3eaf3;
    text-transform: uppercase;
    font-size: 0.92rem;
}

#financialStatementDisplay .statement-item th,
#financialStatementDisplay .statement-item td {
    padding: 9px 14px;
    border-bottom: 1px solid #e3eaf3;
}

#financialStatementDisplay .statement-item:nth-child(even) th,
#financialStatementDisplay .statement-item:nth-child(even) td {
    background: rgba(241, 246, 255, 0.55);
}

#financialStatementDisplay .statement-label {
    font-weight: 650;
    color: #2c3e50;
}

#financialStatementDisplay .statement-amount {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #111;
    white-space: nowrap;
}

#financialStatementDisplay .statement-indent-1 {
    padding-left: 28px;
    font-weight: 600;
    color: #34495e;
}

#financialStatementDisplay .statement-indent-2 {
    padding-left: 42px;
}

#financialStatementDisplay .statement-item.is-subtotal th,
#financialStatementDisplay .statement-item.is-subtotal td {
    font-weight: 900;
    background: #ffffff;
    border-top: 2px solid #d7e5ff;
}

/* --- Stock Analysis Page Styling (scoped) --- */
.page--stock {
    background: #f8faff;
    color: #111;
}

/* About Me background image */
body.page--about-bg {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    background: none;
}

body.page--about-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: #000;
}

/* Optional: background video layer (add a <video class="page-bg-video"> in the HTML) */
body.page--about-bg .page-bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* About Me: white page text, keep widget/card text as-is */
body.page--about-bg main,
body.page--about-bg main h1,
body.page--about-bg main p,
body.page--about-bg main a,
body.page--about-bg main span,
body.page--about-bg main li {
    color: #fff !important;
}

/* Dark variant (used by Stock Analysis page) */
.page--stock.page--stock-dark {
    background: #054fe4;
    color: #eef2ff;
}

.page--stock.page--stock-dark .stock-title,
.page--stock.page--stock-dark .stock-section__title {
    color: #eef2ff;
}

.page--stock.page--stock-dark .stock-muted {
    color: rgba(238, 242, 255, 0.82);
}

.page--stock.page--stock-dark .stock-muted a {
    color: #a7c7ff;
}

.page--stock.page--stock-dark .stock-muted a:hover {
    text-decoration: underline;
}

.page--stock .stock-main {
    max-width: 1400px;
    margin: 28px auto 0;
    padding: 0 16px;
    text-align: center;
}

.page--stock .stock-title {
    margin-bottom: 12px;
    color: #111;
    letter-spacing: 0.3px;
}

.page--stock .stock-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page--stock .stock-section {
    max-width: 1200px;
    margin: 18px auto 36px;
    padding: 0 16px;
    text-align: left;
}

.page--stock .stock-section__title {
    color: #111;
    margin-bottom: 10px;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
}

.page--stock .stock-cards {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.page--stock .stock-grow {
    flex: 1;
    min-width: 300px;
}

.page--stock .stock-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
    border: 1px solid rgba(2, 6, 23, 0.06);
    padding: 14px;
}

.page--stock .stock-card--link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #111;
    min-width: 240px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page--stock .stock-card--link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.10);
}

.page--stock .stock-card__desc {
    color: #555;
    font-size: 0.95rem;
    margin-top: 6px;
}

.page--stock .stock-card__title {
    margin: 0;
    font-weight: 700;
    color: #111;
}

.page--stock .stock-card__hint {
    margin-top: 8px;
    color: #666;
    font-size: 0.94rem;
}

.page--stock .stock-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    border: 1px solid rgba(2, 6, 23, 0.06);
    background: #fff;
}

.page--stock .stock-embed--flat {
    box-shadow: none;
}

.page--stock .stock-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.page--stock .stock-muted {
    margin-top: 10px;
    color: #444;
    line-height: 1.5;
}

.page--stock .stock-muted a {
    color: #4b007a;
    font-weight: 600;
    text-decoration: none;
}

.page--stock .stock-muted a:hover {
    text-decoration: underline;
}

.page--stock .stock-image {
    width: 100%;
    border-radius: 8px;
    max-height: 260px;
    object-fit: cover;
    display: block;
}


@media screen and (max-width: 640px) {
    .page--stock .stock-card--link {
        min-width: 100%;
    }

    .page--stock .stock-grow {
        min-width: 100%;
    }
}

/* --- Numbers page helpers (inputs + key aura widget) --- */
.numbers-form {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    gap: 12px 10px;
    align-items: center;
    margin-bottom: 14px;
}

.numbers-form label {
    margin-right: 0;
    white-space: nowrap;
}

.numbers-form select {
    margin-right: 0;
    width: 100%;
}

.numbers-form button {
    justify-self: start;
    white-space: nowrap;
}

@media screen and (max-width: 720px) {
    .numbers-form {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .numbers-form label {
        margin-bottom: -6px;
    }

    .numbers-form button {
        width: 100%;
    }
}

.numbers-input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #b2bec3;
    font-size: 1rem;
    background: #fff;
    color: #2c3e50;
    min-width: 120px;
}

.numbers-input:focus {
    border-color: #3498db;
    outline: none;
}

.key-aura {
    padding: 14px;
}

.key-aura__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.key-aura__title {
    font-weight: 700;
    color: #111;
}

.key-aura__hint {
    color: #555;
    font-size: 0.95rem;
    margin-top: 4px;
}

.key-aura__btn {
    background: linear-gradient(90deg, #3498db 60%, #8e44ad 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
}

.key-aura__btn:hover {
    background: linear-gradient(90deg, #217dbb 60%, #6c3483 100%);
}

.key-aura__canvas {
    width: 100%;
    height: 180px;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(2, 6, 23, 0.06);
    background: #f8faff;
}

.key-aura__status {
    margin-top: 10px;
    color: #444;
    line-height: 1.5;
}

*{
Box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Kumbh Sans', sans-serif;
}

.navbar {
    background:#131313;
    color: rgb(0, 0, 0);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px;

}

#navbar__logo {
    background-color:#9d00ff;
    background-image: linear-gradient(to top, #9f0028 0%, #9f0050 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 20rem;
}

.fa-gem{
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    cursor: pointer;
}

.navbar__links:hover {
  display: flex ;
  justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex ;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    Padding: 8px 16px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #9f0050;
    color: white;
}

.button:hover {
    background: #4b007a;
    transition: all 0.3s ease-out;
}

.navbar__links:hover {
    background: #4b007a;
    border-radius: 4px;
    transition: all 0.3s ease-out;
}

/* Bottom bar (About page footer) */
.footer-bar {
    background: #131313;
    color: #fff;
    padding: 16px 0 14px;
}

.footer-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    flex-wrap: wrap;
}

.footer-bar__brand {
    font-weight: 800;
    letter-spacing: 0.3px;
}

.footer-bar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-bar__links {
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.footer-bar__links:hover {
    background: #4b007a;
    transition: all 0.3s ease-out;
}

.footer-bar__fineprint {
    max-width: 1300px;
    margin: 10px auto 0;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Drawings: click-to-zoom images */
#drawingsGallery img {
    cursor: zoom-in;
    transition: transform 0.18s ease;
}

#drawingsGallery img.is-zoomed {
    cursor: zoom-out;
    transform: scale(2);
    position: relative;
    z-index: 10;
}

body.is-lightbox-open {
    overflow: hidden;
}

/* --- Comics Section --- */
.comics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f0f5 100%);
    margin: 3rem 0;
}

.comics-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comic-placeholder {
    background: white;
    border-radius: 12px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.comic-placeholder:hover {
    box-shadow: 0 6px 20px rgba(255, 41, 41, 0.15);
    border-color: #ff2929;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    display: grid;
    place-items: center;
    padding: 18px;
    cursor: zoom-out;
}

.image-lightbox__img {
    max-width: min(1100px, 95vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    display: block;
}
@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0 30px;
    }

    .navbar__menu {
        display:grid;
        grid-template-columns: auto;
        margin: 0;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;

    }

    .navbar__menu.active {
        background: #ff0d0d;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

      .navbar__toggle {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: white;
      }

      .navbar__item {
        width: 100%;
      }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        /* moved slightly down */
        transform: translate(-100%, 70%);

    }

    .navbar__bin {
    padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
     #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(-8px) rotate(-45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
}
}

/*hero section CSS*/
 .main {
     background: linear-gradient(to bottom, #a703ff, #a703ff);
     width: 100%;
     min-height: 70vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 3.5rem 1.5rem;
 }

 .main__container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
justify-content: center;
width: 100%;
max-width: 1200px;
margin: 0 auto;
height: auto;
background-color: #a703ff;
padding: 2.5rem 2rem;
border-radius: 16px;
}

/* mobile safety: avoid overlap with navbar and reduce nudge */
@media screen and (max-width: 800px) {
    .main { min-height: 60vh; padding: 2rem 1rem; }
    .main__container { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.25rem; }
}

.main__content {
    text-align: center;
}

/* --- Live ticker (Home) --- */
.ticker {
    width: 100%;
    background: #131313;
    color: #fff;
    overflow: hidden;
    min-height: 50px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.ticker > div {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll 45s linear infinite;
}

.ticker-track {
    display: flex;
    align-items: center;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    white-space: nowrap;
    cursor: pointer;
    border-right: 1px solid #333;
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.ticker-symbol {
    font-weight: 700;
    min-width: 50px;
}

.ticker-price {
    font-weight: 600;
    color: #fff;
    min-width: 70px;
}

.ticker-change {
    min-width: 80px;
}

.ticker-change.positive {
    color: #00ff00;
}

.ticker-change.negative {
    color: #ff4444;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.main__content h1 {
    font-size: 4rem;
}

.main__content h2 {
    font-size: 2.5rem;
}

    
.main__btn {
    margin-top: 2rem;
    
}

.main__content p {
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 4rem;
    color: #ff00a2;
background-color: #ffffff;
    padding: 0.5rem;
    border-radius: 4px;

}
.main__content h1 {
    font-size: 9rem;
    background-color: #ff0000;
    background-image: linear-gradient(to top, #ff0000 0%, #ff0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: rgb(255, 164, 247);    
    -moz-text-fill-color: red;
   
}

.main__content h2 {
    font-size: 5rem;
    background-color: #ff1fca;
    background-image: linear-gradient(to top, #ff00bb 0%, #ff0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: rgb(223, 188, 255);
    -moz-text-fill-color: rgb(255, 0, 144);
}

.main__btn p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.main__btn {
    background: #ff2929;
    color: white;
    padding: 1rem 3rem;
    font-size: 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
}

.main__btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #a500ae;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.main__btn:hover {
    background-color: #a900eb;
}

.main__btn:hover::after {
    opacity: 1;
}

/* --- Remember DaChurro CTA Button Section --- */
.churro__cta-section {
    background: linear-gradient(135deg, #ff2929 0%, #ff00a2 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.churro__cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.churro__cta-section h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.churro__huge-btn {
    background: white;
    color: #ff2929;
    padding: 2rem 4rem;
    font-size: 2.5rem;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1);
}

.churro__huge-btn a {
    color: #ff2929;
    text-decoration: none;
    font-weight: 900;
}

.churro__huge-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #ffe6e6;
}

.main__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#main__image img {
    width: min(520px, 90%);
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* --- About Business Section --- */
.about-business {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin: 2rem 0;
}

.about-business__container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-business h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.about-business__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-business__text {
    line-height: 1.8;
}

.about-business__text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.about-business__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ff2929;
}

.highlight h3 {
    color: #ff2929;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #34495e;
    font-size: 1rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .about-business__content {
        grid-template-columns: 1fr;
    }
    
    .about-business h2 {
        font-size: 2rem;
    }
}

/*Finance section CSS*/
.services {
    padding: 4rem 0;
    background: #f9f9f9;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
}

.services h1 {
    background-color: #e611a2;
    background-image: linear-gradient(to top, #e611a2 0%, #ff0000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.service__card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff2929;
    position: relative;
    overflow: hidden;
}

.service__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 41, 41, 0.2);
}

.service__card h3 {
    font-size: 1.6rem;
    color: #ff2929;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service__card p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

