@charset "utf-8";

        :root {
            --lov-primary: #0058c6;
            --lov-secondary: #3498db;
            --lov-accent: #4da6ff;
            --lov-dark: #2c3e50;
            --lov-light: #f8f9fa;
            --lov-gray: #f0f2f5;
            --lov-text: #444;
            --lov-border: #dfe6e9;
            --lov-white: #ffffff;
            --lov-light-gray: #f5f7fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .lov-body {
            font-size: 15px;
            font-family: 'Bai-Jamjuree', sans-serif;
            line-height: 1.6;
            color: var(--lov-text);
            background-color: #fff;
            scroll-behavior: smooth;
        }
        
        .lov-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .lov-header {
            background: linear-gradient(135deg, var(--lov-dark), var(--lov-primary));
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .lov-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .lov-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .lov-logo i {
            margin-right: 10px;
            color: var(--lov-accent);
        }
        
        .lov-nav-links {
            display: flex;
            list-style: none;
        }
        
        .lov-nav-links li {
            margin-left: 25px;
        }
        
        .lov-nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }
        
        .lov-nav-links a:hover {
            color: var(--lov-accent);
        }
        
        /* Hero Section */
        .lov-hero {
            background: linear-gradient(rgba(245, 245, 245, 0.9), rgba(230, 230, 230, 0.8)), url(/static/starry/images/banner/banner_milling.jpg);

            background-size: cover;
            background-position: center;
            color: #111111;
            padding: 100px 0;
            text-align: center;
        }
        
        .lov-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .lov-hero h2 {
            font-size: 25px;
            margin-bottom: 20px;
            font-weight: 800;
         
        }
        
        .lov-hero p {
            font-size: 15px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .lov-btn {
            display: inline-block;
            background: var(--lov-primary);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--lov-primary);
            font-size: 16px;
        }
        
        .lov-btn:hover {
            background: #0044a0;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        
        /* Section Styles */
        .lov-section {
            padding: 80px 0;
        }
        
        .lov-white-bg {
            background-color: var(--lov-white);
        }
        
        .lov-gray-bg {
            background-color: var(--lov-light-gray);
        }
        
        .lov-section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .lov-section-title h2 {
            font-size: 2.5rem;
            color: #111111;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .lov-section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--lov-accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .lov-section-title p {
            color: var(--lov-text);
            font-size: 15px;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        /* Card Styles */
        .lov-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .lov-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .lov-card-img {
            height: 200px;
            background: var(--lov-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--lov-primary);
            font-weight: 600;
            text-align: center;
            padding: 20px;
            border-bottom: 3px solid var(--lov-secondary);
        }
        
        .lov-card-content {
            padding: 25px;
        }
        
        .lov-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333333;
        }
        
        .lov-card p {
            margin-bottom: 15px;
            color: var(--lov-text);
        }
        
        /* Grid Layout */
        .lov-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        /* Process Section */
        .lov-process-step {
            display: flex;
            margin-bottom: 40px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .lov-step-number {
            flex: 0 0 80px;
            background: #4da6ff;
            color: #0058c6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            position: relative;
        }
        
        .lov-step-number:after {
            content: counter(step);
        }
        
        .lov-step-content {
            padding: 25px;
            flex: 1;
        }
        
        .lov-step-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333333;
        }
        
        /* FAQ Section */
        .lov-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .lov-accordion-item {
            margin-bottom: 15px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .lov-accordion-header {
            padding: 20px 25px;
            background:  white;
            color: black;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
        }
        
        .lov-accordion-header i {
            transition: transform 0.3s;
        }
        
        .lov-accordion-content {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .lov-accordion-item.active .lov-accordion-content {
            padding: 25px;
            max-height: 500px;
        }
        
        .lov-accordion-item.active .lov-accordion-header i {
            transform: rotate(180deg);
        }
        
        /* Benefits Section */
        .lov-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .lov-benefit-icon {
            flex: 0 0 70px;
            height: 70px;
            background: var(--lov-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-right: 25px;
        }
        
        .lov-benefit-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333333;
        }
        
        /* CTA Section */
        .lov-cta {
            background: linear-gradient(135deg, var(--lov-primary), #003b8f);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .lov-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .lov-cta p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Footer */
        .lov-footer {
            background: var(--lov-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .lov-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .lov-footer-col h3 {
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }
        
        .lov-footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--lov-accent);
        }
        
        .lov-footer-links {
            list-style: none;
        }
        
        .lov-footer-links li {
            margin-bottom: 12px;
        }
        
        .lov-footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .lov-footer-links a:hover {
            color: var(--lov-accent);
        }
        
        .lov-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #95a5a6;
            font-size: 0.95rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .lov-hero h1 {
                font-size: 2.8rem;
            }
            
            .lov-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 768px) {
            .lov-nav {
                flex-direction: column;
            }
            
            .lov-logo {
                margin-bottom: 15px;
            }
            
            .lov-nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .lov-nav-links li {
                margin: 5px 10px;
            }
            
            .lov-hero {
                padding: 70px 0;
            }
            
            .lov-hero h1 {
                font-size: 2.3rem;
            }
            
            .lov-section-title h2 {
                font-size: 2rem;
            }
            
            .lov-process-step {
                flex-direction: column;
            }
            
            .lov-step-number {
                height: 60px;
            }
        }
        
        @media (max-width: 480px) {
            .lov-hero h1 {
                font-size: 2rem;
            }
            
            .lov-hero p {
                font-size: 1.1rem;
            }
            
            .lov-section-title h2 {
                font-size: 1.8rem;
            }
            
            .lov-cta h2 {
                font-size: 2.2rem;
            }
        }