
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .section {
            margin-bottom: 3rem;
        }

        .section h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
        }

        .section p {
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }

        /* Services Cards */
        .services-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .service-card {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 1.5rem;
            width: 300px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .service-card:hover {
            border-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 2rem 0;
            text-align: center;
        }

        footer a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 0.5rem;
            transition: var(--transition);
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services-cards {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                margin: 0.5rem 0;
            }
        }