body {
            background-color: #f9f9f9;
            font-family: 'Chakra Petch', sans-serif;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 10px 0;
        }
        header .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 24px;
        }
        header .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        .hero {
            background-color: #ecf0f1;
            padding: 50px 0;
            text-align: center;
        }
        .hero h1 {
            font-weight: bold;
            color: #34495e;
        }
        .carousel-inner img {
            width: 750px;
            height: 678px;
            object-fit: cover;
        }
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 5px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
        }
        footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        footer .column {
            flex: 1 1 300px;
            margin: 10px;
        }
        footer .column h5 {
            font-weight: bold;
        }
        footer .social-icons {
            display: flex;
            gap: 10px;
        }
        footer .social-icons a {
            color: white;
            font-size: 20px;
            text-decoration: none;
        }
        .map-container iframe {
            width: 100%;
            height: 300px;
            border: 0;
            border-radius: 10px;
        }
        .downloads h2 {
            text-align: center;
            font-weight: bold;
            color: #34495e;
            margin-bottom: 30px;
        }
        .downloads ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }
        .downloads ul li {
            margin: 10px 0;
        }
        .downloads ul li a {
            color: #2c3e50;
            font-weight: bold;
            text-decoration: none;
        }
        .downloads ul li a:hover {
            text-decoration: underline;
        }