 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #1e1e1e;
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        .main-nav {
            background-color: #2a2a2a;
            padding: 15px 0;
        }
        .main-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        .main-nav li {
            margin: 0 20px;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .hero {
            background: url('../images/13033eb3b566801c33790c9a808b947d.jpeg') no-repeat center center;
            background-size: cover;
            position: relative;
            overflow: hidden;
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 30px;
        }
		.hero::before {
		    content: '';
		    position: absolute;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background: linear-gradient(135deg, rgba(10, 17, 32, 0.9) 0%, rgba(0, 100, 148, 0.6) 100%);
		}
		
		.hero .container {
		    position: relative;
		    z-index: 1;
		}
        .section {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .section-title {
            color: #2a5ca7;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .feature-item {
            padding: 15px;
            border-left: 3px solid #2a5ca7;
        }
        .btn {
            display: inline-block;
            background-color: #2a5ca7;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
        }
        footer {
            background-color: #1e1e1e;
            color: white;
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column a:hover {
            color: #fff;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
        }
        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .social-links a {
            color: white;
            margin: 0 10px;
            font-size: 20px;
        }
        @media (max-width: 768px) {
            .feature-list, .footer-content {
                grid-template-columns: 1fr;
            }
        }
        }