
    :root {
    --primary: #ff6933;
    --secondary-green: #008751;
    --background-light: #fcf9f8;
    --background-dark: #23140f;
    --border-light: #ead5cd;
    --text-main: #1d110c;
    --text-muted: #a15d45;
    --border-color: #f4eae6;
    --secondary: #2D5016;
    }

    body {
    font-family: "Work Sans", sans-serif;
    background-color: var(--background-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }

    a {
    text-decoration: none;
    }
    
    /* Header Styles */
    .navbar-custom {
        background-color: rgba(248, 246, 245, 0.95);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }

    .navbar-brand-custom {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .logo-icon {
        background-image: url('images/logo.png');
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    .brand-text {
        font-size: 1.25rem;
        font-weight: 900;
        color: var(--secondary);
        margin: 0;
    }

    .nav-link-custom {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-dark);
        padding: 0.5rem 0;
        margin: 0 1rem;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    .search-box {
        background-color: var(--border-color);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        padding: 0.5rem 1rem;
        max-width: 320px;
    }

    .search-box input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        padding: 0 0.5rem;
        font-size: 0.875rem;
    }

    .search-box input::placeholder {
        color: var(--text-muted);
    }

    .btn-subscribe {
        background-color: var(--primary);
        color: white;
        font-weight: 700;
        padding: 0.5rem 1.25rem;
        border: none;
        border-radius: 0.5rem;
        font-size: 0.875rem;
        transition: all 0.3s;
    }

    .btn-subscribe:hover {
        background-color: var(--primary);
        opacity: 0.9;
        transform: scale(1.02);
    }

    /* Main Content */
    main {
    flex-grow: 1;
    }

    .badge-custom {
    background-color: var(--secondary-green);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    }

    .page-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.033em;
    line-height: 1.2;
    }

    .page-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    }

    .back-button {
    background-color: white;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s;
    }

    .back-button:hover {
    background-color: var(--background-light);
    color: var(--text-main);
    }

    /* Form Card */
    .form-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
    }

    .form-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    }

    .form-control {
    border: 1px solid var(--border-light);
    background-color: var(--background-light);
    color: var(--text-main);
    border-radius: 0.5rem;
    height: 48px;
    padding: 0 1rem;
    }

    .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 105, 51, 0.2);
    background-color: var(--background-light);
    }

    textarea.form-control {
    height: auto;
    padding: 1rem;
    resize: none;
    }

    .btn-submit {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 105, 51, 0.2);
    }

    .btn-submit:hover {
    background-color: rgba(255, 105, 51, 0.9);
    transform: translateY(-4px);
    }

    .privacy-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    }

    /* Contact Info Card */
    .contact-card {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(255, 105, 51, 0.1);
    }

    .contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    }

    .contact-icon-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    }

    .contact-value {
    font-size: 1.125rem;
    font-weight: 700;
    }

    .social-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    }

    .social-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    }

    .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    }

    .social-icon:hover {
    background-color: var(--secondary-green);
    color: white;
    }

    /* Map Card */
    .map-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 256px;
    border: 1px solid var(--border-light);
    }

    .map-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s;
    }

    .map-card:hover .map-bg {
    transform: scale(1.1);
    }

    .map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    }

    .map-info {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.75rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .map-info-title {
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    }

    .map-info-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    }

    .btn-directions {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* Footer */
.footer {
    background-color: var(--secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    background-image: url('images/logo.png');
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-color: var(--text-muted);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.footer-desc {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-bottom a:hover {
    color: white;
}

    /* Responsive */
    @media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    }
