/* ========================================
   Equity Planner Map - Financial Services
   Custom Stylesheet
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ========================================
   Variables & Base Styles
   ======================================== */
:root {
    --primary: #1a5276;
    --primary-light: #2980b9;
    --primary-dark: #0e2f44;
    --secondary: #27ae60;
    --accent: #f39c12;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --text: #333333;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ========================================
   Navbar / Header
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    margin: 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    margin: 0 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(26, 82, 118, 0.08);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-icon {
    font-size: 15rem;
    opacity: 0.15;
    color: var(--white);
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
}

/* ========================================
   Service Cards (Homepage)
   ======================================== */
.services-overview {
    background-color: var(--white);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card .service-icon,
.service-card h3,
.service-card p {
    padding: 0 25px;
}

.service-card .service-icon {
    padding-top: 25px;
}

.service-card p {
    padding-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   Service Detail Cards (Services Page)
   ======================================== */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 0;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-detail-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-card .service-detail-icon,
.service-detail-card h3,
.service-detail-card p,
.service-detail-card .service-features {
    padding: 0 30px;
}

.service-detail-card .service-detail-icon {
    padding-top: 25px;
}

.service-detail-card .service-features {
    padding-bottom: 30px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detail-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-detail-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-features li {
    padding: 5px 0;
    color: var(--text);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ========================================
   Feature Boxes (Why Choose Us)
   ======================================== */
.feature-box {
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ========================================
   Page Title Section (Inner Pages)
   ======================================== */
.page-title-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-title-section .breadcrumb {
    margin-bottom: 0;
}

.page-title-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-title-section .breadcrumb-item a:hover {
    color: var(--white);
}

.page-title-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-title-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   About Page
   ======================================== */
.about-image-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-icon-large {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.mission-box {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 35px 25px;
    height: 100%;
    transition: var(--transition);
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mission-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mission-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* ========================================
   Blog Cards
   ======================================== */
.blog-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 0;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-body h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-body p {
    color: var(--gray);
    font-size: 0.95rem;
    flex: 1;
}

.blog-body .btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-info-box {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-item:hover {
    box-shadow: var(--shadow);
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 20px;
    margin-top: 3px;
    min-width: 30px;
    text-align: center;
}

.contact-info-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.map-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ========================================
   Subscribe / Unsubscribe Pages
   ======================================== */
.subscribe-box,
.unsubscribe-box {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
}

.subscribe-icon,
.unsubscribe-icon {
    margin-bottom: 25px;
}

.subscribe-icon i,
.unsubscribe-icon i {
    font-size: 4rem;
    color: var(--primary);
}

.subscribe-box h2,
.unsubscribe-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.benefit-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.benefit-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text);
}

/* ========================================
   Policy Pages (Privacy & Terms)
   ======================================== */
.policy-box {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 50px 40px;
}

.policy-box h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.policy-box h2:first-child {
    margin-top: 0;
}

.policy-box p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark) !important;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-light);
    min-width: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--white);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.stat-box {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   How It Works / Process Section
   ======================================== */
.how-it-works {
    background: var(--white);
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ========================================
   Blog Preview Section
   ======================================== */
.blog-preview {
    background: var(--white);
}

.blog-preview-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-preview-image {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 0;
    text-align: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-image i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-preview-content {
    padding: 25px;
}

.blog-preview-content h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-light);
}

.read-more-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* ========================================
   Newsletter CTA Section
   ======================================== */
.newsletter-cta {
    background: linear-gradient(135deg, var(--secondary), #229954);
    color: var(--white);
}

.newsletter-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-icon {
        font-size: 10rem;
    }

    .hero-section {
        padding: 70px 0;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .newsletter-cta h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-icon {
        font-size: 6rem;
        margin-top: 30px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-title-section {
        padding: 40px 0;
    }

    .contact-form-box {
        padding: 25px;
    }

    .subscribe-box,
    .unsubscribe-box {
        padding: 30px 20px;
    }

    .policy-box {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .newsletter-cta h2 {
        font-size: 1.4rem;
    }

    .newsletter-cta {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


.blog-content {
    text-align: justify;
}

.navbar-brand img{
    width: 250px;
}