@media (min-width: 992px) {
    header.masthead {
        /* height: 100vh; */
        min-height: 775px;
        padding-top: 0;
        padding-bottom: 0;
                height: 280vh;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Catamaran', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.masthead {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 20px;
    min-height: 100vh;
}

.expense-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expense-banner-main {
    text-align: center;
    margin-bottom: 50px;
}

.expense-banner-main h1 {
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 36px;
    margin-bottom: 20px;
}

.expense-banner-main hr {
    width: 80px;
    height: 3px;
    background-color: #fff;
    border: none;
    margin: 20px auto;
}

.expense-banner-main h2 {
    font-size: 20px;
    font-weight: 300;
    padding: 10px 0 20px;
}

.expense-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 30px 0;
}

.expense-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.expense-col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.expense-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.expense-text-center {
    text-align: center;
}

.expense-phone-block {
    margin-bottom: 20px;
    padding: 20px 20px 5px 20px;
}

.expense-phone-block img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.expense-manager-images .expense-phone-block img {
    max-width: 85%;
    width: 85%;
}

.expense-phone-block img:hover {
    transform: translateY(-5px);
}

.expense-feature-text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    padding: 15px 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 8px;
    line-height: 1.5;
    backdrop-filter: blur(10px);
}

.expense-manager-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.expense-manager-images {
    margin-bottom: 60px;
    padding: 40px 0;
}

.expense-video-section {
    margin-top: 60px;
    padding: 40px 20px;
}

.expense-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.expense-embed-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-top: 30px;
}

.expense-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.expense-bot-image {
    width: 40px;
    vertical-align: middle;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .expense-col-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .expense-col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .expense-banner-main h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .expense-col-3,
    .expense-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .expense-banner-main h1 {
        font-size: 24px;
    }

    .expense-banner-main h2 {
        font-size: 18px;
    }

    .masthead {
        padding: 40px 20px;
    }

    .expense-phone-block {
        padding: 15px;
    }
}