/* Base styles */
        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            background-image: url('../images/backdrop.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            /* Equivalent to text-gray-800 */
            margin: 0;
            padding: 0;
            position: relative;
        }

        /* Container for content within sections */
        .container {
            max-width: 960px;
            /* Equivalent to mx-auto and max-w-4xl/xl */
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            /* Equivalent to px-4 */
            padding-right: 1rem;
            /* Equivalent to px-4 */
        }

        /* Header Section */
        .header {
            background-image: linear-gradient(to right, #dc2626, #991b1b);
            /* from-red-600 to-red-800 */
            color: white;
            padding: 1.5rem;
            /* Equivalent to p-6 */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            /* Equivalent to shadow-lg */
            display: flex;
            justify-content: space-between;
            /* Equivalent to justify-between */
            align-items: center;
            /* Equivalent to items-center */
        }

        .header h1 {
            font-size: 1.875rem;
            /* Equivalent to text-3xl */
            font-weight: 700;
            /* Equivalent to font-bold */
            letter-spacing: -0.025em;
            /* Equivalent to tracking-tight */
        }

        .header h1 span {
            color: #fca5a5;
            /* Equivalent to text-red-200 */
        }

        .header nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header nav ul li {
            margin-left: 1.5rem;
            /* Equivalent to space-x-6 */
        }

        .header nav ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
            /* Equivalent to transition duration-300 */
        }

        .header nav ul li a:hover {
            color: #fca5a5;
            /* Equivalent to hover:text-red-200 */
        }

        /* Active navigation link */
        .nav-link.active {
            color: #f87171;
            /* Equivalent to text-red-400 */
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background-size: cover;
            background-position: center;
            height: 100vh;
            /* Equivalent to h-screen */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem;
            /* Equivalent to p-4 */
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            /* Equivalent to inset-0 */
            background-color: rgba(0, 0, 0, 0.6);
            /* Equivalent to bg-black opacity-60 */
        }

        .hero-content {
            position: relative;
            z-index: 10;
            /* Equivalent to z-10 */
            color: white;
            max-width: 48rem;
            /* A common max-width */
            margin-left: auto;
            margin-right: auto;
        }

        .hero-content img {
            display: block;
            /* Equivalent to block */
            margin-left: auto;
            /* Equivalent to mx-auto */
            margin-right: auto;
            /* Equivalent to mx-auto */
            width: 250px;
            height: 250px;
            margin-bottom: 32px;
        }

        .hero-content h2 {
            font-size: 3rem;
            /* Equivalent to text-5xl */
            font-weight: 800;
            /* Equivalent to font-extrabold */
            line-height: 1.25;
            /* Equivalent to leading-tight */
            margin-bottom: 1rem;
            /* Equivalent to mb-4 */
            /* Animation for fade-in-down (conceptual, requires keyframes) */
        }

        @media (min-width: 768px) {

            /* Equivalent to md: */
            .hero-content h2 {
                font-size: 4.5rem;
                /* Equivalent to md:text-7xl */
            }
        }

        .hero-content p {
            font-size: 1.125rem;
            /* Equivalent to text-lg */
            margin-bottom: 2rem;
            /* Equivalent to mb-8 */
            /* Animation for fade-in-up (conceptual, requires keyframes) */
        }

        @media (min-width: 768px) {

            /* Equivalent to md: */
            .hero-content p {
                font-size: 1.25rem;
                /* Equivalent to md:text-xl */
            }
        }

        .hero-content .contact-button {
            background-color: #ef4444;
            /* Equivalent to bg-red-500 */
            color: white;
            font-weight: 700;
            /* Equivalent to font-bold */
            padding: 0.75rem 2rem;
            /* Equivalent to py-3 px-8 */
            border-radius: 9999px;
            /* Equivalent to rounded-full */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            /* Equivalent to shadow-lg */
            transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
            /* Equivalent to transition duration-300 */
            text-decoration: none;
            display: inline-block;
        }

        .hero-content .contact-button:hover {
            background-color: #b91c1c;
            /* Equivalent to hover:bg-red-700 */
            transform: scale(1.05);
            /* Equivalent to hover:scale-105 */
        }

        /* Contact Section */
        .contact-section {
            padding-top: 4rem;
            /* Equivalent to py-16 */
            padding-bottom: 4rem;
            /* Equivalent to py-16 */
            padding-left: 1rem;
            /* Equivalent to px-4 */
            padding-right: 1rem;
            /* Equivalent to px-4 */
            background-color: white;
            /* Equivalent to bg-white */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            /* Equivalent to shadow-md */
            max-width: 960px;
            /* Equivalent to max-w-4xl */
            margin-left: auto;
            margin-right: auto;
            margin-top: 2rem;
            /* Equivalent to my-8 */
            margin-bottom: 2rem;
            /* Equivalent to my-8 */
            border-radius: 0.5rem;
            /* Equivalent to rounded-lg */
        }

        .contact-section h2 {
            font-size: 2.25rem;
            /* Equivalent to text-4xl */
            font-weight: 700;
            /* Equivalent to font-bold */
            margin-bottom: 2rem;
            /* Equivalent to mb-8 */
            color: #b91c1c;
            /* Equivalent to text-red-700 */
        }

        .contact-section p {
            font-size: 1.125rem;
            /* Equivalent to text-lg */
            margin-bottom: 2rem;
            /* Equivalent to mb-8 */
        }

        .contact-info-box {
            max-width: 500px;
            /* Equivalent to max-w-xl */
            margin-left: auto;
            margin-right: auto;
            background-color: #f9fafb;
            /* Equivalent to bg-gray-50 */
            padding: 2rem;
            /* Equivalent to p-8 */
            border-radius: 0.5rem;
            /* Equivalent to rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            /* Equivalent to shadow-xl */
            text-align: left;
            /* Equivalent to text-left */
        }

        .contact-info-box p {
            font-size: 1.125rem;
            /* Equivalent to text-lg */
            margin-bottom: 1rem;
            /* Equivalent to mb-4 */
        }

        .contact-info-box p a {
            color: #dc2626;
            /* Equivalent to text-red-600 */
            text-decoration: none;
        }

        .contact-info-box p a:hover {
            text-decoration: underline;
            /* Equivalent to hover:underline */
        }

        .contact-info-box .social-media {
            margin-top: 2rem;
            /* Equivalent to mt-8 */
            color: #4b5563;
            /* Equivalent to text-gray-600 */
            text-align: center;
            /* Equivalent to text-center */
        }

        .contact-info-box .social-media .social-icons {
            display: flex;
            justify-content: center;
            /* Equivalent to justify-center */
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 1.5rem;
            /* Equivalent to space-x-6 */
        }

        .contact-info-box .social-media .social-icons a {
            color: inherit;
            /* Inherit color from parent */
            transition: color 0.3s ease-in-out;
            /* Equivalent to transition duration-300 */
        }

        .contact-info-box .social-media .social-icons svg {
            width: 2rem;
            /* Equivalent to w-8 */
            height: 2rem;
            /* Equivalent to h-8 */
        }

        .contact-info-box .social-media .social-icons a:hover {
            color: #dc2626;
            /* Equivalent to hover:text-red-600 */
        }

        .contact-info-box .social-media .social-icons a[aria-label="Instagram"]:hover {
            color: #ec4899;
            /* Equivalent to hover:text-pink-500 */
        }

        /* Footer Section */
        .footer {
            background-color: #1a202c;
            /* Equivalent to bg-gray-800 */
            color: white;
            padding: 1.5rem;
            /* Equivalent to p-6 */
            margin-top: 2rem;
            /* Equivalent to mt-8 */
            opacity: 0.6;
            /* Equivalent to opacity-60 */
        }

        .footer .container {
            text-align: center;
            font-size: 0.875rem;
            /* Equivalent to text-sm */
        }

        .footer p {
            margin-top: 0.5rem;
            /* Equivalent to mt-2 */
        }

        /* Two-tone color effect using pseudo-elements */
        body::before,
        body::after {
            content: '';
            position: fixed;
            /* Fixed position to cover the whole viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            /* Place behind actual content but above background image */
        }