.about-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 70, 0.65); 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #fff;
}

.about-content p {
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-content p a {
  color: #ffb700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-content p a:hover {
  color: #ff4f81;
}

.about-content span {
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-banner {
    height: 50vh;
  }
  .about-content h1 {
    font-size: 44px;
  }
  .about-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .about-banner {
    height: 45vh;
  }
  .about-content h1 {
    font-size: 36px;
  }
  .about-content p {
    font-size: 16px;
  }
}
/* /////////////////////////////Welcome to The City Kindergarten Shah Alam/////////////////////////////////// */
.intro-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    overflow: hidden; 
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 40px;
    align-items: center;
}

.text-column, .image-column {
    width: 100%;
}

.intro-content {
    text-align: center; 
}

.intro-content h2 {
    color: #2E2E72;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.intro-content h2 span {
    color: #ff4f81; 
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: block;
    object-fit: cover;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@media (min-width: 900px) {
    .content-wrapper {
        flex-direction: row; 
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .text-column {
        flex: 1; 
        text-align: left; 
        order: 1;
    }

    .image-column {
        flex: 1; 
        order: 2;
    }

    /* .intro-content h2 {
        font-size: 2.5rem;
    } */
}
/* //////////////////////////Why Choose The City Kindergarten in Shah Alam?////////////////////////////////////////////// */
.why-us-organic-why {
    padding: 80px 20px;
    background-color: #FFF7E6; 
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.container-why {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header-why {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-why h2 {
    font-size: 2.6rem;
    color: #2E2E72;
    margin-bottom: 10px;
    font-weight: 500;
}
.section-header-why p {
    color: #555;
    width: 90%;
}

.organic-wrapper-why {
    display: flex;
    flex-direction: column; 
    gap: 50px;
    align-items: center;
}

.organic-image-col-why {
    position: relative;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.organic-image-col-why.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.img-stack-why {
    display: grid; 
    grid-template-areas: "stack"; 
    width: 100%;
    position: relative;
    z-index: 2; 
}

.feature-img-why {
    grid-area: stack; 
    width: 100%;
    height: auto; 
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0; 
    transition: opacity 0.4s ease-in-out; 
    pointer-events: none; 
}

.feature-img-why.active {
    opacity: 1;
    z-index: 1; 
}

.organic-text-col-why {
    width: 100%;
}

.organic-text-col-why h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #2E2E72;
    margin-bottom: 15px;
    line-height: 1.2;
}

.intro-p-why {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.strengths-list-why {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strengths-list-why li {
    display: flex;
    align-items: flex-start; 
    gap: 15px;
    background: rgba(255, 255, 255, 0.6); 
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid #ff4f81; 
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.strengths-list-why li:hover {
    transform: translateX(10px); 
    background: #fff;
}

.icon-why {
    font-size: 1.5rem;
    background: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.text-why {
    display: flex;
    flex-direction: column;
}

.text-why strong {
    color: #2E2E72;
    font-size: 1.1rem;
}

@media (min-width: 900px) {
    .organic-wrapper-why {
        flex-direction: row; 
        align-items: center; 
        gap: 80px;
    }

    .organic-image-col-why {
        flex: 1;
        order: 2; 
    }

    .organic-text-col-why {
        flex: 1;
        order: 1; 
    }
}
/* /////////////////////////////Our Kindergarten Curriculum/////////////// */
.curriculum-cards-section {
    padding: 80px 20px;
    background-color: #FFFFFF; 
    font-family: "Poppins", sans-serif;
}

.curriculum-cards-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.curr-header, .curr-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.curr-header h2 {
    font-size: 2.6rem;
    font-weight: 500;
    color: #2E2E72;
    margin-bottom: 20px;
    width: 100%;
}

.curr-header span {
    color: #FF7F50; 
}

.curr-footer {
    margin-top: 50px;
    margin-bottom: 0;
    font-style: italic;
    color: #666;
    font-weight: 600;
}

.curr-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    justify-content: center;
}
.curr-visual-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* border-bottom: 5px solid #ff4f81;  */
}

.curr-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.card-img-header {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-header .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: rgba(78, 205, 196, 0.7); / */
    z-index: 1;
}

.card-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2; 
    background: #fff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-body h3 {
    color: #2E2E72;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 600px) {
    .curr-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .curr-header h2 {
        /* font-size: 2.8rem; */
    }
    .curr-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .curr-visual-card:nth-last-child(1),
    .curr-visual-card:nth-last-child(2) {
        transform: translateX(50%);
    }
    .curr-visual-card:nth-last-child(1):hover,
    .curr-visual-card:nth-last-child(2):hover {
         transform: translateX(50%) translateY(-10px);
    }
}


/* /////////////////////////////Kindergarten Programs by Age Group/////////////////////////////////// */
.programs-zigzag {
    padding: 10px 20px;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}
.programs-zigzag .container {
    max-width: 1100px;
    margin: 0 auto;
}

.zigzag-header {
    text-align: center;
    margin-bottom: 60px;
}

.zigzag-header h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #2E2E72;
    margin-bottom: 10px;
}


.zigzag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px; 
}

.program-row {
    display: flex;
    flex-direction: column-reverse; 
    gap: 30px;
    align-items: center;
}

.prog-text {
    flex: 1;
    position: relative;
    padding: 20px;
}

.big-number {
    font-size: 5rem;
    font-weight: 800;
    opacity: 0.15; 
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 0;
    line-height: 1;
}

.num-3 { color: #ff4f81; }
.num-4 { color: #ff4f81; }
.num-5 { color: #ff4f81; }

.prog-text h3 {
    font-size: 1.5rem;
    color: #2E2E72;
    margin-bottom: 20px;
    position: relative;
    z-index: 1; 
}

.prog-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.prog-image {
    flex: 1;
    width: 100%;
}

.prog-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.program-row:hover .prog-image img {
    transform: scale(1.03);
}


@media (min-width: 900px) {
    
    .program-row {
        flex-direction: row;
        gap: 80px;
    }
    .program-row.reverse {
        flex-direction: row-reverse;
    }
    .prog-text {
        padding: 0; 
    }
    .big-number {
        font-size: 8rem; 
        top: -60px;
        left: -20px;
    }

    /* .zigzag-header h2 {
        font-size: 3rem;
    } */
}
/* /////////////////////////////////Our Location in Shah Alam////////////////////// */
.location-pin-section {
    padding: 80px 20px;
    background-color: #F0F4F8; 
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.location-pin-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.pin-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 50px;
}

.pin-text-col {
    flex: 1;
}

.pin-text-col h2 {
    font-size: 2.2rem;
    color: #2E2E72;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.pin-text-col h2 span {
    color: #ff4f81;
    border-bottom: 4px solid hsl(343, 100%, 65% ,0.2);
}

.pin-text-col .intro-p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sub-heading {
    font-size: 1.2rem;
    color: #2E2E72;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center; 
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
}

.icon-box {
    font-size: 1.5rem;
    background: #E3F2FD;
    width: 50px;
    height: 50px;
    flex-shrink: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.info strong {
    display: block;
    color: #2E2E72;
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.visit-box p {
    font-weight: 600;
    color: #2E2E72;
    margin-bottom: 15px;
}

.btn-map {
    display: inline-block;
    background: #ff4f81;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.btn-map:hover {
    background: #FFB000;
    transform: translateY(-3px);
}

.pin-map-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.map-frame:hover {
    transform: rotate(0deg) scale(1.01);
}

.custom-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.pin-body {
    width: 50px;
    height: 50px;
    background: #FF7F50;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
    margin-bottom: 10px;
}

.pin-inner-logo {
    transform: rotate(45deg);
    font-size: 1.2rem;
}

.pin-pulse {
    width: 20px;
    height: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    animation: shadowPulse 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-15px); }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(0.5); opacity: 0.1; }
}

@media (min-width: 900px) {
    .pin-wrapper {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .map-frame {
        height: 500px;
    }
}
/* /////////////////////////// */
.admission-timeline-section {
    padding: 80px 20px;
    background-color: #FFF8E1; 
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.admission-timeline-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.adm-split-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 50px;
}

.adm-left-col {
    flex: 1;
}

.fees-highlight-card {
    background: #2E2E72; 
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(46, 46, 114, 0.2);
}

.fees-highlight-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.fees-highlight-card span {
    color: #FF7F50; 
}

.fee-intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.fee-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 20px 0;
}

.fee-detail {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
}

.deco-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 127, 80, 0.2);
    border-radius: 50%;
}

.adm-right-col {
    flex: 1;
    padding-left: 10px;
}

.timeline-heading {
    font-size: 1.5rem;
    color: #2E2E72;
    margin-bottom: 30px;
    font-weight: 700;
}

.vertical-timeline {
    position: relative;
    border-left: 3px solid #E0E0E0; 
    padding-left: 30px;
    margin-left: 15px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.time-marker {
    position: absolute;
    left: -49px; 
    top: 0;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 3px solid #ff4f81;
    color: #2E2E72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.time-marker.check {
    background: #2E2E72; 
    border-color: #2E2E72;
    color: #fff;
}

.timeline-item:hover .time-marker {
    transform: scale(1.2);
    background: #2E2E72;
    color: #fff;
}

.time-content h4 {
    margin: 0 0 5px 0;
    color: #2E2E72;
    font-size: 1.15rem;
    font-weight: 700;
}

.time-content p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

@media (min-width: 900px) {
    .adm-split-wrapper {
        flex-direction: row; 
        align-items: center; 
        gap: 80px;
    }

    .fees-highlight-card {
        padding: 60px; 
    }
}
/* /////////////////////////////////////////////// */
.scrapbook-section {
    padding: 80px 20px;
    background-color: #FAF9F6; 
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.scrapbook-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.sb-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.sb-header h2 {
    font-size: 2.2rem;
    color: #2E2E72;
    margin-bottom: 10px;
}

.sb-header span {
    color: #FF7F50;
    font-family: "Poppins", sans-serif;
}

.sb-header p {
    font-size: 1.1rem;
    color: #666;
}

.scrapbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    padding: 20px; 
}

.sb-note {
    padding: 30px 25px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15); 
    position: relative;
    transition: transform 0.3s ease;
    color: #333;
    border-radius: 12px;
}

.sb-note:hover {
    transform: scale(1.05) rotate(0deg) !important; 
    z-index: 2;
}

.pin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.sb-note h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2E2E72;
}

.sb-note p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.note-yellow {
    background-color: #FFF9C4; 
    transform: rotate(-2deg);
}

.note-pink {
    background-color: #F8BBD0; 
    transform: rotate(2deg);
}

.note-blue {
    background-color: #BBDEFB; 
    transform: rotate(-1deg);
}

.tape-paper-wrapper {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    border-radius: 12px;
}

.tape-strip {
    width: 150px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.4); 
    border-left: 2px dashed rgba(0,0,0,0.1);
    border-right: 2px dashed rgba(0,0,0,0.1);
    background-image: linear-gradient(45deg, rgba(0,0,0,0.05) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.05) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.highlight-text {
    font-size: 1.25rem;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.highlight-text strong {
    color: #ff4f81;
    background: linear-gradient(120deg, #fff 0%, #fff 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

.highlight-sub {
    font-size: 1rem;
    color: #2E2E72;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (min-width: 900px) {
    .scrapbook-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px;
    }
}
/* ///////////////Learning Approach Section/////////////////////////// */
.approach-tiles-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.approach-tiles-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.tiles-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.tiles-header h2 {
    font-size: 2.2rem;
    color: #2E2E72;
    margin-bottom: 15px;
}

/* .tiles-header h2 span {
    color: #FF7F50;
    text-decoration: underline;
    text-decoration-color: #FFB347;
} */

.tiles-header p {
    font-size: 1.1rem;
    color: #666;
}

.tiles-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
}

.learn-tile {
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.learn-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tile-yellow { background-color: #FFF3E0; border: 2px solid #FFE0B2; }
.tile-teal   { background-color: #E0F2F1; border: 2px solid #B2DFDB; }
.tile-coral  { background-color: #FBE9E7; border: 2px solid #FFCCBC; }
.tile-blue   { background-color: #E3F2FD; border: 2px solid #BBDEFB; }

.tile-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1; 
    color: #000;
}

.tile-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.learn-tile h3 {
    font-size: 1.3rem;
    color: #2E2E72;
    margin-bottom: 10px;
    font-weight: 700;
}

.learn-tile p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.tiles-footer {
    text-align: center;
    margin-top: 50px;
}

.tiles-footer p {
    font-size: 1.2rem;
    color: #2E2E72;
    background: #F5F5F5;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
}

.tiles-footer strong {
    color: #FF7F50;
}

@media (min-width: 768px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
}