  
      /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('magritte-dress.jpg');
            background-position: top;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        
        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 20px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-text-container {
            max-width: 800px;
        }
        
        .title-box {
            background-color:#000000; /* rgba(163, 31, 52, 0.85); */
            padding: 30px 40px;
            border-radius: 4px 4px 0 0;
            margin-bottom: 0;
            max-width: 700px;
        }
        
        .hero-subtitle {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            font-family: 'Noto Sans JP', sans-serif;
        }
        
        .hero-title {
            font-size: 42px;
            font-weight: 300;
            line-height: 1.2;
            color: #fff;
            font-family: 'Anton', sans-serif;
        }
        
        .description-box {
            background-color: rgba(51, 51, 51, 0.85);
            padding: 30px 40px;
            border-radius: 0 0 4px 4px;
            max-width: 700px;
            margin-top: 0;
        }
        
        .hero-description {
            font-size: 18px;
            color: #fff;
            line-height: 1.7;
            font-family: 'Noto Sans JP', sans-serif;
        }
        
        
      
  
  
  
  
  
   @media (max-width: 576px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-section {
                min-height: 500px;
            }
            
            .alternate-image {
                height: 250px;
                padding: 20px;
            }
            
            .alternate-heading {
                font-size: 22px;
            }
            
            .alternate-button {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .flow-step {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .step-icon {
                margin: 0 auto;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 25px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }
        
