 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2563eb;
            --primary-dark: #1e40af;
            --secondary-color: #10b981;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        /* Header */
        .header {
            background: var(--bg-white);
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
        }

        .logo-container {
            text-align: left;
            padding: 1rem 0;
        }

        .logo {
            max-height: 100px;
            width: auto;
        }

        .nav-container {
            display: flex;
            align-items: left;
            justify-content: space-between;
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
        }

        /* Navigation */
        .nav-desktop {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-desktop {
                display: flex;
                gap: 2rem;
                align-items: center;
            }

            .nav-container {
                justify-content: left;
            }

            .nav-mobile-toggle {
                display: none;
            }
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            background: none;
            border: none;
            color: var(--text-dark);
            font-weight: 500;
            cursor: pointer;
            padding: 0.5rem 0;
            font-size: 1rem;
            display: flex;
            align-items: left;
            gap: 0.5rem;
        }

        .dropdown-toggle:hover {
            color: var(--primary-color);
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 0.7rem;
        }

        .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0;                /* prevent vertical gap */
  z-index: 1000;
  pointer-events: none;         /* disable until shown */
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

        .dropdown:hover .dropdown-content {
            display: block;
            pointer-events: auto;         /* enable clicking */
  opacity: 1;

        }

        .dropdown-content a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: background-color 0.2s;
        }

        .dropdown-content a:hover {
            background-color: var(--bg-light);
            color: var(--primary-color);
        }

        /* Mobile Menu */
        .nav-mobile-toggle {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 500;
        }

        .nav-mobile {
            display: none;
            background: var(--bg-white);
            border-top: 1px solid var(--border-color);
        }

        .nav-mobile.active {
            display: block;
        }

        .nav-mobile a, .nav-mobile button {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-size: 1rem;
            cursor: pointer;
        }

        .nav-mobile a:hover, .nav-mobile button:hover {
            background-color: var(--bg-light);
        }

        /* Main Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        .layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .layout {
                grid-template-columns: 1fr 320px;
            }
        }

        /* Main Content */
        .content {
            background: var(--bg-white);
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .breadcrumb {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.875rem;
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            color: var(--text-light);
        }

        h1 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .description {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .gallery-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem 0;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-md);
        }

        /* Make images from {image} tag responsive */
        .content img {
            max-width: 100%;
            height: auto !important;
            width: auto !important;
            display: block;
            margin: 0 auto;
            border-radius: 0.75rem;
            box-shadow: var(--shadow-md);
        }

        /* Override inline styles for responsive images */
        .content img[width],
        .content img[height] {
            max-width: 100%;
            height: auto !important;
            width: auto !important;
        }

        .image-navigation {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .nav-button {
            flex: 1;
            min-width: 200px;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 0.5rem;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.2s;
        }

        .nav-button:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .nav-button-label {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 0.25rem;
        }

        .nav-button:hover .nav-button-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .nav-button-title {
            font-weight: 600;
        }

        /* Right Sidebar / Contact Form */
        .contact-sidebar {
            display: none;
        }

        @media (min-width: 1024px) {
            .contact-sidebar {
                display: block;
            }
        }

        .contact-card {
            background: var(--bg-white);
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .contact-image {
            width: 100%;
            max-height: 150px;
            max-width: 150px;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-size: 0.875rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-submit {
            width: 100%;
            padding: 0.875rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
        }

        .form-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .cap-field {
            display: none;
        }

        /* Quick Contact Button (Mobile) */
        .quick-contact-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        @media (min-width: 1024px) {
            .quick-contact-btn {
                display: none;
            }
        }

        .mobile-form {
            display: none;
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .mobile-form.active {
            display: block;
        }

        /* Related Links */
        .related-links {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
        }

        .related-links h3 {
            font-size: 1.125rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .related-links ul {
            list-style: none;
        }

        .related-links li {
            margin-bottom: 0.75rem;
        }

        .related-links a {
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: left;
            gap: 0.5rem;
        }

        .related-links a:hover {
            text-decoration: underline;
        }

        .related-links a::before {
            content: '→';
            color: var(--secondary-color);
            font-weight: bold;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 2rem 1.5rem;
            margin-top: 4rem;
            text-align: left;
        }

        .footer p {
            font-size: 0.875rem;
            opacity: 0.8;
        }
        .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.gallery-item {
  background: var(--bg-white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.gallery-item a {
  display: block;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem;
}

.gallery-item a:hover {
  color: var(--primary-color);
}
@media (max-width: 480px) {
    .logo {
        width: 380px;
    }
}
