/* First wave section (mission quote) */
        .wave-combined-section {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            background-image: url('/static/images/mock.svg');
            background-size: 100% auto;
            background-position: top center;
            background-repeat: no-repeat;
            min-height: 40vw;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mission-text-overlay {
            max-width: 800px;
            z-index: 10;
        }

        .mission-quote {
            font-family: 'Lora', serif;
            font-size: clamp(2rem, 3vw, 4rem);
            font-weight: 400;
            line-height: 1.2;
            color: var(--text-dark);
            text-align: center;
            margin-top: 100px;
        }

        /* General button */
        .btn {
            font-family: 'Sora', sans-serif;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 48px;
            background-color: #265c70;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(38, 92, 112, 0.25);
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #1a4252;
            transform: translateY(-2px);
        }

        .feature-section {
            display: flex;
            text-align: center;
            margin-left: 10%;
            margin-right: 10%;
            justify-content: center;
            margin-bottom: 100px;

        }
        .feature-content h2 {
            font-size: 3rem;
            color:#A0A5C2;
            margin-bottom: 20px;
            text-align: center;
            z-index: 10;
        }
        .feature-content p {
            font-family: 'Lora', serif;
            font-size: 1.5rem;
            line-height: 1.6;
            padding-top: 40px;
        }

        /* empowerMe section */
        .empowerme {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            background-color: #EAC6C2; 
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .empowerme-text-section {
            flex: 1;
            padding: 60px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;

            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 C300,250 700,50 1000,100 L1000,200 L0,200 Z' fill='%231b5c73'/%3E%3C/svg%3E");
            background-size: 100% 30%;
            background-position: bottom;
            background-repeat: no-repeat;
        }

        .empowerme-text-section h2 {
            font-size: 3.5rem;
            color: #1E5A6E;
            margin: 0 0 20px 0;
            z-index: 10;
        }

        .empowerme-text-section p {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin: 0 0 40px 0;
            z-index: 10;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 48px;
            background-color: #265c70;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(38, 92, 112, 0.25);
            transition: background-color 0.3s ease, transform 0.2s ease;
            z-index: 10;
        }

        .learn-more-btn:hover {
            background-color: #1a4252;
            transform: translateY(-2px);
        }

        .btn-icon {
            opacity: 0.8;
        }

        .empowerme-image-section {
            flex: 0 0 35%;
            min-height: 100%;
        }

        .empowerme-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        @media (max-width: 900px) {
            .custom-card {
                flex-direction: column;
            }
            
            .card-image-section {
                flex: auto;
                width: 100%;
                height: 350px;
            }
            
            .card-text-section {
                padding: 40px 20px 60px 20px;
            }
        }

        /* milwaka section */
        .milkawa {
            display: flex;
            flex-direction: row-reverse;
            max-width: 1200px;
            margin: 40px auto; 
            background-color: #e3d5c8;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .milkawa-content {
            flex: 1;
            padding: 60px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            position: relative;
            text-align: right;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L1000,0 L1000,50 C700,150 300,-50 0,100 Z' fill='%239aa0c0'/%3E%3C/svg%3E");
            background-size: 100% 30%;
            background-position: top left;
            background-repeat: no-repeat;
        }

        .milkawa-content h2 {
            font-size: 3.5rem;
            color: #265c70;
            margin: 0 0 20px 0;
            z-index: 10;
        }

        .milkawa-content p {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 0 40px 0;
            z-index: 10;
        }

        .milkawa-content .btn {
            padding: 16px 48px;
            background-color: #265c70;
            box-shadow: 0 4px 15px rgba(38, 92, 112, 0.25);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .milkawa-content .btn:hover {
            background-color: #1a4252;
            transform: translateY(-2px);
        }

        .milkawa .feature-image {
            flex: 0 0 35%;
            min-height: 100%;
        }

        .milkawa .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            display: block;
        }

        @media (max-width: 900px) {
            .milkawa {
                flex-direction: column-reverse;
            }
            
            .milkawa .feature-image {
                flex: auto;
                width: 100%;
                height: 350px;
            }
            
            .milkawa-content {
                padding: 40px 20px 60px 20px;
                align-items: center;
                text-align: center;
            }
        }

        /* retreats section */
        .retreats {
            margin-top: -20vw;
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            background-color: #EAC6C2; 
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .retreats-text-section {
            flex: 1;
            padding: 60px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;

            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 200' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,150 C300,250 700,50 1000,100 L1000,200 L0,200 Z' fill='%231b5c73'/%3E%3C/svg%3E");
            background-size: 100% 30%;
            background-position: bottom;
            background-repeat: no-repeat;
        }

        .retreats-text-section h2 {
            font-size: 3.5rem;
            color: #1E5A6E;
            margin: 0 0 20px 0;
            z-index: 10;
        }

        .retreats-text-section p {
            font-family: 'Lora', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin: 0 0 40px 0;
            z-index: 10;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px 10px 28px;
            background-color: #1b5c73;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(27, 92, 115, 0.4);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .learn-more-btn:hover {
            background-color: #154658;
        }

        .btn-icon {
            opacity: 0.8;
        }

        .retreats-image-section {
            flex: 0 0 35%;
            min-height: 100%;
        }

        .retreats-image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block; 
        }

        @media (max-width: 900px) {
            .custom-card {
                flex-direction: column;
            }
            
            .card-image-section {
                flex: auto;
                width: 100%;
                height: 350px;
            }
            
            .card-text-section {
                padding: 40px 20px 60px 20px;
            }
        }

        .keep-in-touch {
            position: relative;
            text-align: center;
            padding: 80px 20px 100px;
            overflow: hidden;
        }

        .keep-in-touch::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom left;
            opacity: 0.6;
        }

        .keep-in-touch h2 {
            font-family: 'Sora', sans-serif;
            font-size: 3rem;
            font-weight: 400;
            color: #1E5A6E;
            margin-bottom: 16px;
        }

        .keep-in-touch p {
            font-family: 'Sora', sans-serif;
            font-size: 2rem;
            color: #1E5A6E;
            margin-bottom: 32px;
        }

        .keep-in-touch form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .keep-in-touch input {
            width: 300px;
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            background: white;
        }

        .keep-in-touch input:focus {
            border-color: #115762;
        }

        .keep-in-touch .btn {
            padding: 16px 48px;
            background-color: #265c70;
            box-shadow: 0 4px 15px rgba(38, 92, 112, 0.25);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .keep-in-touch .btn:hover {
            background-color: #1a4252;
            transform: translateY(-2px);
        }

        .keep-in-touch .success-message {
            font-family: 'Lora', serif;
            font-size: 1.2rem;
            color: #115762;
        }
