
        body { 
            font-family: 'Poppins', sans-serif; 
            background-color: #FDFBF5; /* Creamy background */
            color: #2c3e50; /* Dark slate blue */
        }
        h1, h2, h3 { font-family: 'Lora', serif; }
        .bg-primary { background-color: #2c3e50; }
        .bg-primary-hover:hover { background-color: #212f3c; }
        .text-accent { color: #c0392b; } /* Vintage red */
        .border-accent { border-color: #c0392b; }
        .hero-bg {
            background-image: linear-gradient(rgba(253, 251, 245, 0.8), rgba(253, 251, 245, 0.9)), url('../img/hero.jpg');
            background-size: cover;
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title::before, .section-title::after {
            content: '';
            position: absolute;
            top: 50%;
            height: 1px;
            width: 50px;
            background-color: #bdc3c7;
        }
        .section-title::before { left: -60px; }
        .section-title::after { right: -60px; }
        .btn-main {
            background-color: #c0392b;
            color: white;
            padding: 10px 30px;
            border-radius: 2px;
            font-weight: 500;
            box-shadow: 2px 2px 0px #2c3e50;
            transition: all 0.2s;
        }
        .btn-main:hover {
            box-shadow: 1px 1px 0px #2c3e50;
            transform: translate(1px, 1px);
        }
    