.refined-section {
    background: #f8fafc;
    margin-top: 5%;
}

.refined-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0b1f44;
}

.refined-text {
    max-width: 760px;
    font-size: 1rem;
    color: #5c6c8a;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .refined-title {
        font-size: 2.2rem;
    }

    .refined-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .refined-title {
        font-size: 1.9rem;
    }
}


.philosophy-section {
    background: #f9fbfd;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -40px;
    right: -30px;
    background: white;
    padding: 16px 18px;
    border-radius: 16px;
    text-align: center;
}

.floating-badge h3 {
    color: #f7931e;
    font-weight: 800;
    margin-bottom: 4px;
}

/* Typography */
.philosophy-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b1f44;
}

.highlight-text {
    color: #f7931e;
    font-style: italic;
}

.philosophy-text {
    color: #5c6c8a;
    line-height: 1.7;
}

/* Feature Items */
.icon-circle {
    width: 34px;
    height: 34px;
    background: #fff6e5;
    color: #f7931e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.small-text {
    color: #6c7a92;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-img {
        width: 450px;
        height: 350px;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .floating-badge {
        right: 10px;
        padding: 8px 10px;
    }
}


.info-card {
    background: radial-gradient(circle at top right, #1c1b35, #090916);
    border-radius: 20px;
    padding: 22px 25px;
}

/* Icon Box */
.icon-box {
    width: 46px;
    height: 46px;
    background: #fff7cc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    color: #f39c12;
}

/* Text */
.info-item small {
    font-size: 12px;
    font-weight: 600;
    color: #c0bdbd;
    letter-spacing: 1px;
}

.info-item h6 {
    color: #fabf60;
    font-size: 15px;
    font-weight: 700;
    margin-top: 2px;
}

/* Button */
.book-btn {
    background: #0b0b2d;
    color: white;
    border-radius: 30px;
    padding: 12px 26px;
    font-weight: 600;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #f39c12;
    color: white;
}

/* Center content on small devices */
@media (max-width: 768px) {
    .info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .icon-box {
        margin-bottom: 6px;
    }
}

/* Reduce spacing on very small screens */
@media (max-width: 576px) {
    .info-section {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}