   
        
        
        
                 * {
        margin: 0;
        padding: 0;
    }
.ck-about-section {
    background-color: #f7f7f7;
    font-family: 'Playfair Display', serif;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Is section ke andar ki har cheez ke liye box-sizing reset */
.ck-about-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ck-container {
    display: flex;
    max-width: 1250px;
    width: 100%;
    align-items: center;
    position: relative;
}

/* Safaid wala box */
.ck-text-card {
    background-color: #ffffff;
    padding: 60px;
    width: 55%;
    z-index: 2;
    position: relative;
    margin-right: -80px; /* Overlap effect */
}

.ck-sub-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ck-main-title {
    font-size: 48px;
    line-height: 1.1;
    color: #111;
    margin-bottom: 25px;
}

.ck-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.ck-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ck-btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.ck-btn:hover {
    opacity: 0.8;
}

.ck-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
    color: #333;
    transform: rotate(-5deg);
}

/* Image wala hissa */
.ck-image-container {
    width: 55%;
    line-height: 0;
}

.ck-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile ke liye responsive settings */
@media (max-width: 768px) {
    .ck-container {
        flex-direction: column;
    }
    .ck-text-card {
        width: 100%;
        margin-right: 0;
        padding: 30px;
        order: 2; /* Text niche aa jayega */
    }
    .ck-image-container {
        width: 100%;
        order: 1; /* Image upar aa jayegi */
    }
    .ck-main-title {
        font-size: 32px;
    }
    .ck-card-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}