/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'BPG Banner Caps';
    src: url('./fonts/bpg-banner-caps-webfont.ttf') format('truetype');
}

@font-face {
    font-family: 'DejaVu Sans Extra Light';
    src: url('./fonts/dejavu-sans-extra-light-webfont.ttf') format('truetype');
}

@font-face {
    font-family: 'Alk Sanet';
    src: url('./fonts/alk-sanet-webfont.ttf') format('truetype');
}

body {
    font-family: 'Alk Sanet', 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #FAFAFA;
    box-shadow: 0 2px 10px #00000019;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: nowrap;
    gap: 20px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 40px;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.company-text h2 {
    font-family: 'Alk Sanet', 'Arial', 'Helvetica', sans-serif;
    font-size: 20px;
    color: #0D1126;
    margin-bottom: -8px;
}

.company-text p {
    font-family: 'Alk Sanet', 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
    color: #946D43;
    font-weight: 550;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Alk Sanet', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3c72;
    background-color: #f0f4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #1e3c72;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.phone-number:hover {
    background-color: #946D43;
    border-color: #946D43;
}

.phone-number:hover .phone-link {
    color: #FAFAFA;
    font-weight: 500;
}

.phone-number:hover .phone-icon {
    color: #0D1126;
}

.phone-icon {
    font-size: 14px;
    flex-shrink: 0;
    color: #0D1126;
}

.phone-link {
    text-decoration: none;
    color: #1e3c72;
    font-family: 'Alk Sanet', 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Banner Styles */
.banner {
    background: #0D1126;
    padding: 25px 0;
    margin-top: 20px;
    overflow: hidden;
}

.banner-content {
    display: grid;
    grid-template-columns: 58.5% 41.5%;
    gap: 60px;
    align-items: center;
    position: relative;
}

.banner-text {
    overflow: hidden;
}

.banner-label {
    font-size: 14px;
    color: #946D43;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.banner-title {
    font-family: 'BPG Banner Caps', sans-serif;
    font-size: 54px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 1.1;
}

.banner-accent {
    font-family: 'BPG Banner Caps', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #946D43;
    margin: 10px 0 20px 0;
    line-height: 1.1;
}

.banner-subtitle {
    font-family: 'DejaVu Sans Extra Light', sans-serif;
    font-size: 16px;
    color: #FAFAFA;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-stats {
    display: flex;
    gap: 120px;
    margin-top: 80px;
    position: absolute;
    bottom: -30px;
    left: 44%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background-color: transparent;
    padding: 30px 40px;
    border-radius: 15px;
    /*box-shadow: 0 10px 30px #00000026;*/
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #946D43;
    margin-bottom: 8px;
    font-family: 'BPG Banner Caps', sans-serif;
}

.stat-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1e3c72;
    color: #FAFAFA;
    border-color: #1e3c72;
}

.btn-primary:hover {
    background-color: #946D43;
    border-color: #946D43;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #1e3c724d;
}

.btn-secondary {
    background-color: transparent;
    color: #1e3c72;
    border-color: #1e3c72;
}

.btn-secondary:hover {
    background-color: #1e3c72;
    color: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #1e3c724d;
}

.banner-image {
    display: flex;
    justify-content: center;
    background-color: #C0C8D5;
    border-radius: 0px;
    padding: 0px;
    overflow: hidden;
}

.lawyer-photo-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAFAFA;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 20px 40px #00000019;
    position: relative;
    overflow: hidden;
}

.lawyer-photo {
    width: 525px;
    height: 656px;
    border-radius: 25px;
    object-fit: contain;
}

.lawyer-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.photo-text {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 11px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .phone-number {
        padding: 5px 10px;
    }
    
    .phone-link {
        font-size: 13px;
    }
    
    .phone-icon {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 9px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .phone-number {
        padding: 4px 8px;
    }
    
    .phone-link {
        font-size: 12px;
    }
    
    .phone-icon {
        font-size: 11px;
    }
}

@media (max-width: 800px) {
    .nav-menu {
        gap: 7.5px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 4px 8px;
    }
    
    .phone-number {
        padding: 3px 6px;
    }
    
    .phone-link {
        font-size: 11px;
    }
    
    .phone-icon {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo-section {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    .company-text {
        text-align: left;
    }
    
    .company-text h2 {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .company-text p {
        font-size: 12px;
    }
    
    .navigation {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .navigation.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        text-align: left;
        background-color: white;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .contact-info {
        display: none;
    }
    
    .banner-content {
        grid-template-columns: 100%;
        gap: 40px;
        text-align: center;
    }
    
    .banner-title {
        font-size: 35px;
    }
    
    .banner-accent {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
        text-align: left;
    }
    
    .banner-buttons {
        justify-content: flex-start;
    }
    
    .banner-stats {
        gap: 40px;
    }
    
    .lawyer-photo-placeholder {
        width: 300px;
        height: 400px;
    }
    
    .banner {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 29px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .lawyer-photo-placeholder {
        width: 250px;
        height: 320px;
    }
    
    .phone-number {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .phone-link {
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
    background-color: #0D1126;
    color: #FAFAFA;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FAFAFA;
    font-family: 'Alk Sanet', sans-serif;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.contact-link {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #C0C8D5;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #FAFAFA;
    color: #1e3c72;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background-color: #C0C8D5;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ffffff33;
    font-size: 14px;
    color: #ffffffcc;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 100%;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Page Styles */
.page-section {
    padding: 25px 0;
    margin-top: 140px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: justify;
    font-family: 'BPG Banner Caps', sans-serif;
}

/* Services Page */
.services-overview {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    text-align: justify;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    font-size: 48px;
    color: #1e3c72;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(30, 60, 114, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 40px;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    width: 100%;
}

.service-card h3 {
    font-size: 22px;
    color: #946D43;
    margin-bottom: 15px;
    font-family: 'BPG Banner Caps', sans-serif;
    text-align: left;
}

.services-landing {
    background-color: #ffffff;
    margin-top: 45px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'BPG Banner Caps', sans-serif;
}

.service-card:hover {
    background-color: #C0C8D5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px #00000019;
}

.service-card p {
    font-size: 16px;
    color: #666;
    text-align: justify;
}

/* About Page */
.about-section {
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-image {
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px #00000019;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-text h2 {
    font-size: 32px;
    color: #1e3c72;
    margin-bottom: 20px;
    font-family: 'BPG Banner Caps', sans-serif;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* About Description */
.about-description {
    width: 100%;
    margin-top: 40px;
}

.about-description p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* Experience Table Styles */
.experience-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px #00000012;
    flex: 1;
    height: 100%;
}

.experience-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.experience-row:last-child {
    border-bottom: none;
}

.experience-row:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    transform: translateX(5px);
}

.experience-period {
    font-size: 16px;
    font-weight: 700;
    color: #946D43;
    font-family: 'Alk Sanet', sans-serif;
    text-align: center;
}

.experience-employer {
    font-size: 15px;
    color: #1e3c72;
    font-family: 'Alk Sanet', sans-serif;
    font-weight: 500;
    text-align: left;
}

.experience-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.experience-row:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    font-size: 16px;
    color: #1e3c72;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #C0C8D5;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
}

.blog-post {
    background-color: #FAFAFA;
    padding: 0;
    border-radius: 10px;
    border-left: none;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 35% 65%;
    overflow: hidden;
    align-items: stretch;
}

.blog-post-image {
    width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0;
    padding: 0;
}

.blog-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-top: 0;
}

.blog-post-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.blog-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #1e3c72;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.blog-social-btn:hover {
    background-color: #1e3c72;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.blog-post:hover {
    box-shadow: 0 10px 30px #00000019;
    transform: translateY(-5px);
}

.blog-post h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 10px;
    font-family: 'Alk Sanet', sans-serif;
}

.blog-post h3 a {
    color: #1e3c72;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.blog-post h3 a:hover {
    color: #946D43;
    border-bottom: 2px solid #946D43;
}

.blog-date {
    font-size: 14px;
    color: #946D43;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-post p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.read-more {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: #C0C8D5;
}

/* Contact Page */
.contact-section {
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
}

.contact-info-box {
    background-color: #FAFAFA;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px #00000019;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-box h2 {
    font-size: 28px;
    color: #1e3c72;
    margin-bottom: 30px;
    font-family: 'BPG Banner Caps', sans-serif;
}

.contact-item-large {
    margin-bottom: 30px;
}

.contact-item-large h3 {
    font-size: 18px;
    color: #1e3c72;
    margin-bottom: 10px;
    font-family: 'Alk Sanet', sans-serif;
}

.contact-item-large a,
.contact-item-large p {
    font-size: 16px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-large a:hover {
    color: #1e3c72;
}

/* Contact Form */
.contact-form-box {
    background-color: #FAFAFA;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px #00000019;
}

.contact-form-box h2 {
    font-size: 28px;
    color: #1e3c72;
    margin-bottom: 30px;
    font-family: 'BPG Banner Caps', sans-serif;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-family: 'Alk Sanet', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px #1e3c7219;
}

/* Responsive Pages */
@media (max-width: 770px) {
    .services-overview {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 100%;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 32px;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
    }

    .service-icon {
        display: none;
    }

    .service-content {
        width: 100%;
    }

    .service-card h3,
    .service-card p {
        text-align: justify;
    }

    .service-card h3 {
        text-align: left;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .about-text {
        flex: none;
        width: 100%;
    }

    .experience-table {
        margin: 0;
        padding: 25px;
        width: 100%;
    }

    .experience-row {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 15px;
        padding: 12px;
    }

    .blog-grid {
        grid-template-columns: 100%;
        gap: 30px;
    }

    .blog-post {
        grid-template-columns: 100%;
    }

    .blog-post-image {
        border-radius: 10px 10px 0 0;
        min-height: 200px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-social-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .blog-post h3 {
        font-size: 18px;
    }

    .blog-post p {
        font-size: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 100%;
        gap: 40px;
    }

    .page-title {
        font-size: 32px;
        text-align: left;
    }

    .banner-accent {
        text-align: left;
    }

    .stat-number {
        color: #FAFAFA;
    }

    .stat-text {
        color: #FAFAFA;
    }
}
