/* SECTION WRAPPER */
.tp-hero-section-wrap {
    margin-bottom: 80px;
}

/* GRID */
.tp-hero-grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
}

/* LEFT BLOCK */
.tp-hero-left-block {
    padding-top: 260px;
    padding-left: 150px;
}

/* HEADING */
.tp-hero-heading-main {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTEXT */
.tp-hero-subtext {
    font-size: 26px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}


/* RIGHT BLOCK */
.tp-hero-right-block {
    padding: 100px 0;
    width: 100%;
}

/* IMAGE */
.tp-hero-image-main {
    width: 100%;
    height: auto;
    display: block;
}

/* SECTION */
.tp-note-section-wrap {
    background: #FF385C;
    margin-bottom: 90px;
}

/* GRID */
.tp-note-grid-container {
    display: grid;
    grid-template-columns: 70% 30%;
}

/* LEFT */
.tp-note-left-block {
    padding: 10rem 0 10rem 4rem;
    color: #fff;
}

/* CONTENT */
.tp-note-content {
    font-size: 20px;
    line-height: 1.7;
    max-width: 95%;
    text-align: justify;
}

/* RIGHT */
.tp-note-right-block {
    width: 100%;
    height: 100%;
}

/* IMAGE */
.tp-note-image {
    width: 100%;
    height: 100%;
    padding: 30px 30px 0 0;
    object-fit: contain;
    display: block;
}

/* SECTION */
.testprep-section-wrap {
    padding: 50px;
}

/* CONTAINER */
.testprep-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

/* CARD */
.testprep-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGE */
.testprep-card-img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

/* TITLE */
.testprep-card-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 20px;
}

/* TEXT */
.testprep-card-text {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    max-width: 300px;
}

/* CONTAINER */
.testprep-4card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

/* SECTION */
.tp-icons-section-wrap {
    padding: 50px;
}

/* GRID */
.tp-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* CARD */
.tp-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* IMAGE */
.tp-icon-img {
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* TITLE */
.tp-icon-title {
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 8px;
}

/* TEXT */
.tp-icon-text {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    max-width: 220px;
}

/* SECOND ROW POSITIONING */
.tp-span-left {
    grid-column: 1 / 3;
    grid-row: 2;
}

.tp-span-right {
    grid-column: 2 / 4;
    grid-row: 2;
}