* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
    line-height: 1.6;
    font-size: 12px;
}

.main-content {
    padding-top: 140px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto 5%;
    border: 2px solid #000;
    text-align: center;
    overflow: hidden;
    margin-top: 1rem;
    padding: 0;
}

.image {
    width: 110%;
    height: 50vh;
    min-height: 300px;
    object-fit: cover;
}

.content {
    padding: 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1cb5e0, #0093E9);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 147, 233, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 147, 233, 0.4);
    background: linear-gradient(135deg, #1cb5e0, #0077b6);
}

.back-button:active {
    transform: translateY(1px);
}

/* .back-button::before {
    content: "←";
    margin-right: 8px;
} */

/* Water ripple effect */
.back-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.back-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.Quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* or center with gap */
    position: relative;
    padding: 0 20px;
    /* adjust as needed */
    outline: none !important;
    /* Prevent focus outline on container */
}

.quotebtn {
    position: static;
    /* remove absolute positioning */
    margin: 0 auto;
    /* center if using flex with space-between */
}






@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.7;
    }

    20% {
        transform: scale(5, 5);
        opacity: 0.5;
    }

    100% {
        transform: scale(25, 25);
        opacity: 0;
    }
}

/* Optional water drop effect on hover */
.back-button:hover::before {
    animation: waterDrop 0.5s ease-out;
}

@keyframes waterDrop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .main-content {
        padding-top: 160px;
    }

    .container {
        margin-top: 20%;
    }

    .image {
        height: 40vh;
    }
}

@media (max-width: 630px) {
    .main-content {
        padding-top: 160px;
    }

    .container {
        margin-top: 25%;
    }

    .image {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .design {
        max-width: 68%;
        text-align: center;
        margin-left: 15%;
    }


    .container {
        margin-top: 35%;
    }

    .image {
        height: 40vh;
    }
}

@media (max-width: 379px) {


    .container {
        margin-top: 40%;
    }

    .image {
        height: 40vh;
    }
}

@media (max-width: 576px) {
    .content {
        padding: 15px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 15px;
    }
}