
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #ffffff;
        }
        
        header {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        header h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .subtitle {
            font-size: 1.3em;
            font-weight: 400;
            opacity: 0.95;
            margin-top: 15px;
        }
        
        .meta-info {
            margin-top: 25px;
            font-size: 1em;
            opacity: 0.9;
        }
        
        article {
            padding: 50px 20px;
        }
        
        .intro-section {
            background: linear-gradient(to right, #f0f8ff, #ffffff);
            padding: 40px;
            border-left: 5px solid #30A0FF;
            margin-bottom: 50px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(48,160,255,0.1);
        }
        
        .intro-section p {
            font-size: 1.2em;
            line-height: 1.9;
            color: #000000;
        }
        
        h2 {
            color: #000000;
            font-size: 2.2em;
            margin: 50px 0 30px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #30A0FF;
            font-weight: 700;
        }
        
        h3 {
            color: #30A0FF;
            font-size: 1.7em;
            margin: 35px 0 20px 0;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1em;
            text-align: justify;
        }
        
        .highlight-box {
            background-color: #e8f4fd;
            border-left: 4px solid #30A0FF;
            padding: 25px 30px;
            margin: 35px 0;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .highlight-box strong {
            color: #000000;
            font-size: 1.15em;
        }
        
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .image-container img:hover {
            transform: scale(1.02);
        }
        
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #666;
            font-size: 1em;
            line-height: 1.6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .service-card {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        
        .service-card:hover {
            border-color: #30A0FF;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(48,160,255,0.2);
        }
        
        .service-card h4 {
            color: #30A0FF;
            font-size: 1.4em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-card p {
            color: #555;
            line-height: 1.7;
        }
        
        .service-number {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: #30A0FF;
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
            color: #ffffff;
            padding: 50px 40px;
            margin: 60px 0;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(48,160,255,0.3);
        }
        
        .cta-section h3 {
            color: #ffffff;
            font-size: 2em;
            margin-bottom: 25px;
        }
        
        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 1.1em;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn-primary {
            background-color: #ffffff;
            color: #30A0FF;
        }
        
        .btn-primary:hover {
            background-color: #000000;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }
        
        .btn-secondary:hover {
            background-color: #ffffff;
            color: #30A0FF;
            transform: translateY(-3px);
        }
        
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
            padding: 40px;
            background: linear-gradient(to bottom right, #f8f9fa, #e8f4fd);
            border-radius: 12px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3em;
            font-weight: 700;
            color: #30A0FF;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1em;
            color: #000000;
            font-weight: 500;
        }
        
        .upcoming-event {
            background: linear-gradient(to right, #fff5e6, #ffffff);
            border: 3px solid #30A0FF;
            border-radius: 12px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(48,160,255,0.15);
        }
        
        .upcoming-event h3 {
            color: #000000;
            font-size: 2em;
            margin-bottom: 20px;
        }
        
        .event-details {
            font-size: 1.2em;
            line-height: 2;
            color: #333;
        }
        
        .event-details strong {
            color: #30A0FF;
            font-weight: 600;
        }
        
        .quote-box {
            background: #000000;
            color: #ffffff;
            padding: 35px;
            margin: 40px 0;
            border-radius: 10px;
            border-left: 6px solid #30A0FF;
            font-style: italic;
            font-size: 1.2em;
            line-height: 1.9;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
        }
        
        .link-inline {
            color: #30A0FF;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.3s ease;
        }
        
        .link-inline:hover {
            border-bottom: 2px solid #30A0FF;
        }
        
        footer {
            background-color: #000000;
            color: #ffffff;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
        }
        
        footer p {
            margin: 10px 0;
            font-size: 1em;
        }
        
        footer a {
            color: #30A0FF;
            text-decoration: none;
            font-weight: 600;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
        
        ul {
            margin: 25px 0;
            padding-left: 40px;
        }
        
        ul li {
            margin-bottom: 15px;
            font-size: 1.1em;
            line-height: 1.7;
        }
        
        ul li strong {
            color: #30A0FF;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }
            
            .subtitle {
                font-size: 1.1em;
            }
            
            h2 {
                font-size: 1.8em;
            }
            
            h3 {
                font-size: 1.4em;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .stats-section {
                grid-template-columns: 1fr;
            }
            
            article {
                padding: 30px 15px;
            }
        }
    