
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h2 {
            font-size: 24px;
            color: #2c3e50;
            margin: 40px 0 20px;
            padding-bottom: 10px;
           
        }
        h3 {
            font-size: 18px;
            color: #2980b9;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            font-size: 16px;
        }
        .data-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }
        .data-item {
            flex: 1;
            min-width: 120px;
            margin: 10px;
        }
        .data-number {
            font-size: 32px;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 5px;
        }
        .data-text {
            font-size: 14px;
            color: #666;
        }
        .faq-item {
            margin-bottom: 15px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        .faq-question {
            font-weight: bold;
            margin-bottom: 8px;
        }
        .address-info {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
        }
        .brand-story {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .timeline li {
            list-style-type: none;
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
        }
        .timeline li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #3498db;
        }
        @media (max-width: 768px) {
            .data-grid {
                flex-direction: column;
            }
            .data-item {
                margin: 15px 0;
            }
        }