        :root {
            --primary: #FFFDD0;
            --secondary: #1a1a1a;
            --accent: #e8d5b7;
            --light: #f8f5f0;
            --dark: #2c2c2c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        h1,
        h2 {
            font-family: 'Cormorant+Garamond', serif;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* Navbar Style */
        .navbar {
            background: var(--secondary);
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            color: var(--primary);
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            margin-left: 2rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .giftcard-hero {
            height: 40vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/static/medical/images/chatbot.png') center/cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }

        .giftcard-hero h1 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Form Container */
        .main-container {
            max-width: 1000px;
            margin: 30px auto 100px;
            display: flex;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            position: relative;
            z-index: 10;
        }

        .info-panel {
            flex: 1;
            background: var(--secondary);
            padding: 60px 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-visual {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            padding: 25px;
            color: var(--secondary);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .form-panel {
            flex: 1.2;
            padding: 60px;
            background: #fff;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .form-input {
            width: 100%;
            color: #333;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .btn-submit {
            background: var(--primary);
            color: var(--secondary);
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(201, 169, 97, 0.3);
        }

        .alert {
            padding: 15px;
            background: #e7f4e8;
            color: #2e7d32;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            border-left: 5px solid #2e7d32;
        }

        /* Footer Style */
        footer {
            background: var(--secondary);
            color: #fff;
            padding: 50px 5%;
            text-align: center;
        }

        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                margin: 30px 20px 50px;
            }

            .giftcard-hero h1 {
                font-size: 2.5rem;
            }
        }

        .btn-navbar {
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-navbar:hover {
            background-color: var(--primary-dark);
            color: #fff;
        }

        .navbar-brand {
            padding: 0.5rem 0;
        }

        .brand-container {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .clinic-name {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: inherit;
        }

        .doctor-name {
            font-size: 0.75rem;
            font-weight: 400;
            color: inherit;
            opacity: 0.85;
            margin-top: 2px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .clinic-name {
                font-size: 0.95rem;
            }

            .doctor-name {
                font-size: 0.65rem;
            }
        }

        .btn-hero {
            padding: 1rem 2.5rem;
            margin: 0 0.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }

        .btn-hero-primary {
            background: var(--primary);
            color: var(--secondary);
        }

        .btn-hero-primary:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
        }

        .btn-hero-secondary {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .btn-hero-secondary:hover {
            background: #fff;
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: #fff;
            padding: 4rem 0 2rem;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-content h5 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--secondary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
        }