/* Font Face Declarations - Assuming these remain the same */
@font-face {
    font-family: SatoshiRegular;
    src: url(fonts/satoshi/Satoshi-Regular.woff2);
}

@font-face {
    font-family: SatoshiBold;
    src: url(fonts/satoshi/Satoshi-Bold.woff2);
}

@font-face {
    font-family: SatoshiBlack;
    src: url(fonts/satoshi/Satoshi-Black.woff2);
}

.eng-col-callback-wrapper {
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    font-family: 'SatoshiRegular', sans-serif;
    margin: auto;
}

.eng-col-callback-card {
    position: relative;
    background: #0b2b26;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 40px;
}

.eng-col-card-body {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.eng-col-eyebrow {
    font-family: 'SatoshiBold';
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #c69c6d;
    /* Copper accent */
    display: block;
    margin-bottom: 25px;
}

.eng-col-main-title {
    font-family: 'SatoshiBlack';
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 85px;
    color: #e6f0ed;
    /* Creamy white */
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.eng-col-text-muted {
    color: #6a8a82;
    font-family: 'SatoshiBlack';
    /* Muted Sage Green */
}

.eng-col-description {
    font-family: 'SatoshiRegular';
    font-size: 1.15rem;
    color: #b0c4bf;
    /* Lightened sage for readability */
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 45px;
}

/* Buttons - Hover animations removed */
.eng-col-action-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.eng-col-btn-primary {
    background: #c69c6d;
    /* Copper button */
    color: #0b2b26;
    /* Dark green text */
    padding: 20px 42px;
    border: none;
    border-radius: 8px;
    font-family: 'SatoshiBold';
    font-size: 16px;
    cursor: pointer;
}

.eng-col-btn-secondary {
    font-family: 'SatoshiBold';
    color: #e6f0ed;
    text-decoration: none;
    font-size: 17px;
}


@media (max-width: 600px) {
    .eng-col-grid-container {
        display: none;
        /* Keeps it clean on small mobiles */
    }

    .eng-col-callback-card {
        border-radius: 16px;
        padding: 30px 20px;
    }

    .eng-col-description {
        font-size: 18px;
    }

    .eng-col-main-title {
        line-height: 55px;
    }
}

@media (min-width: 320px) {
    .eng-col-main-title {
        line-height: 40px;
    }

    .eng-col-callback-wrapper {
        padding: 56px 24px;
    }
}

@media (min-width: 768px) {
    .eng-col-callback-card {
        padding: 80px;
    }

    .eng-col-main-title {
        line-height: 80px;
    }

    .eng-col-callback-wrapper {
        padding: 64px 0;
    }

    .eng-col-callback-wrapper {
        max-width: 680px;
    }
}

@media (min-width: 1000px) {
    .eng-col-callback-wrapper {
        max-width: 900px;
    }

    .eng-col-callback-wrapper {
        padding: 48px 0px 96px;
    }
}

@media (min-width: 1200px) {
    .eng-col-callback-wrapper {
        max-width: 1024px;
    }
}

@media (min-width: 1400px) {
    .eng-col-callback-wrapper {
        max-width: 1260px;
    }
}

@media (min-width: 1600px) {
    .eng-col-callback-wrapper {
        max-width: 1265px;
    }
}