        /* General Reset and Body Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
             scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f4f7f6;
            color: #333;
        }

        /* --- Header Section --- */
        .header-section {
            height: 200px;
            width: 100%; /* Spans full width */
            background-image: url('/Images/hero-section-photo.webp'),
            linear-gradient(45deg, rgba(44, 49, 57, 0.685), rgba(29, 31, 33, 0.826));
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #ffffff;
            padding: 1rem;
            position: relative;
        }

        /* Dark overlay for better text readability */
        .header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .header-section h1, .header-section p {
            position: relative; /* To appear above the overlay */
            z-index: 1;
        }

        .header-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #F8F8FF;
        }

        .header-section p {
            font-size: 1.125rem;
            font-weight: 400;
            color: #F8F8FF;
        }

        /* Wrapper for the main content cards */
        .content-wrapper {
            max-width: 1050px;
            margin: 0 auto;
            padding: 2rem 1rem; /* Add padding for spacing on mobile */
        }

        /* Shared styles for content cards */
        .content-card {
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem; /* Space between cards */
        }
        
        .content-card:last-child {
            margin-bottom: 0;
        }

        /* --- Contact Info Section --- */
        .contact-info-section {
            display: flex;
            justify-content: space-around;
            align-items: flex-start; /* Aligned items to the top */
            padding: 2.5rem 1.5rem;
            flex-wrap: wrap; 
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1; 
            min-width: 200px;
        }

        .contact-item .icon {
            font-size: 2.5rem;
            color: #334155;
            margin-bottom: 1rem;
        }
        
        .contact-item .fiverr-icon img { /* Changed from svg to img */
            width: 30px; /* Adjusted size to 30px */
            height: auto;
            margin-bottom: 1rem;
        }

        .contact-item p {
            margin: 0.25rem 0;
            font-size: 0.9rem;
            color: #475569;
            line-height: 1.6;
        }
        
        .contact-item a {
            color:#007BFF;
            text-decoration: none;
            font-weight: 500;
        }
        .contact-item a:hover {
            text-decoration: underline;
        }

        /* --- Form Section --- */
        .form-section {
            padding: 2.5rem;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            font-size: 1rem;
            color: #475569;
        }

        .form-row {
            display: flex;
            gap: 1.5rem; /* Space between columns */
            margin-bottom: 1.5rem;
        }

        .form-group {
            flex: 1; /* Each group takes equal space in a row */
            position: relative;
        }

        .form-group label {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 1rem;
            pointer-events: none;
            transition: all 0.2s ease-in-out;
            background-color: #ffffff;
            padding: 0 0.25rem;
        }
        
        .form-group.textarea-group label {
            top: 1.25rem;
        }


        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4f46e5;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }

        /* Floating Label Animation */
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:focus + label,
        .form-group select:valid + label {
            top: 0;
            font-size: 0.8rem;
            color: #4f46e5;
            font-weight: 600;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .send-button {
            padding: 0.8rem 2rem;
            background-color: #4f46e5;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            text-align: center;
        }

        .send-button:hover {
            background-color: #4338ca;
        }
        
        /* --- Responsive Design --- */
        /* Adjusted breakpoint for mobile stacking */
        @media (max-width: 640px) {
            .header-section h1 {
                font-size: 2rem;
            }
            .contact-info-section {
                flex-direction: column;
                align-items: center;
            }
            .form-row {
                flex-direction: column;
                gap: 0; /* Remove gap for column layout */
                margin-bottom: 0;
            }
            .form-group {
                margin-bottom: 1.5rem; /* Add margin to bottom of each group for consistent spacing */
            }
            .form-section {
                padding: 1.5rem;
            }
             .content-wrapper {
                padding: 1rem 0;
             }
             .content-card {
                border-radius: 0;
                margin-bottom: 1rem;
             }
        }
