 /* CSS Variables for consistent theming */
    :root {
      --primary-dark: #1a2f1e;
      --primary-medium: #264d36;
      --primary-light: #3a6b4c;
      --accent: #abba8d;
      --accent-light: #d1d9bb;
      --text-dark: #1e3a29;
      --text-medium: #446755;
      --text-light: #6b8c7a;
      --bg-light: rgba(255, 255, 255, 0.85);
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      --transition: all 0.4s ease;
    }

    /* General Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(rgba(26, 47, 30, 0.7), rgba(26, 47, 30, 0.7)), 
                  url('https://i.pinimg.com/736x/33/85/f9/3385f979f489cc4a913df42b144b2093.jpg') no-repeat center center fixed;
      background-size: cover;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* Sidebar with enhanced design */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0;
      width: 280px;
      height: 100%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
      padding: 30px 20px;
      box-shadow: var(--shadow);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(5px);
      border-right: 1px solid rgba(171, 186, 141, 0.3);
    }

    .logo-container {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(171, 186, 141, 0.5);
    }

    .logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid var(--accent);
      box-shadow: 0 0 15px rgba(171, 186, 141, 0.5);
      transition: var(--transition);
    }

    .logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(171, 186, 141, 0.7);
    }

    .site-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--primary-dark);
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .site-subtitle {
      font-size: 0.9rem;
      color: var(--text-medium);
      font-style: italic;
    }

    .sidebar nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-grow: 1;
    }

    .nav-item {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--text-dark);
      padding: 12px 15px;
      border-radius: 12px;
      transition: var(--transition);
      font-weight: 500;
      position: relative;
      overflow: hidden;
    }

    .nav-item i {
      margin-right: 12px;
      font-size: 1.1rem;
      width: 24px;
      text-align: center;
    }

    .nav-item:hover {
      background: var(--accent);
      color: var(--primary-dark);
      transform: translateX(5px);
    }

    .nav-item.active {
      background: var(--primary-medium);
      color: white;
    }

    .nav-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 4px;
      background: var(--primary-light);
      transform: scaleY(0);
      transition: var(--transition);
    }

    .nav-item:hover::before,
    .nav-item.active::before {
      transform: scaleY(1);
    }

    .sidebar-footer {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(171, 186, 141, 0.5);
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-light);
    }

    /* Main content area */
    .main-content {
      margin-left: 280px;
      padding: 40px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .intro-container {
      max-width: 900px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }

    .intro-image {
      position: relative;
      width: 100%;
      max-width: 600px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .intro-image:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .intro-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }

    .intro-image:hover img {
      transform: scale(1.03);
    }

    .intro-text {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.3);
      max-width: 700px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .intro-text::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, var(--primary-light), var(--accent));
    }

    .intro-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--primary-dark);
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .intro-text p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-medium);
      margin-bottom: 25px;
    }

    .welcome-animation {
      display: inline-block;
      position: relative;
    }

    .welcome-animation::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: linear-gradient(to right, transparent, var(--accent), transparent);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(to right, var(--primary-medium), var(--primary-light));
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(58, 107, 76, 0.3);
      margin-top: 10px;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(58, 107, 76, 0.4);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent-light);
      color: var(--primary-dark);
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--primary-medium);
      color: white;
      transform: translateY(-3px);
    }

    /* Floating elements for visual interest */
    .floating-leaf {
      position: absolute;
      opacity: 0.7;
      z-index: -1;
      animation: float 15s infinite linear;
    }

    .leaf-1 {
      top: 10%;
      left: 5%;
      width: 40px;
      animation-delay: 0s;
    }

    .leaf-2 {
      top: 20%;
      right: 10%;
      width: 30px;
      animation-delay: 3s;
    }

    .leaf-3 {
      bottom: 15%;
      left: 8%;
      width: 35px;
      animation-delay: 6s;
    }

    .leaf-4 {
      bottom: 25%;
      right: 5%;
      width: 25px;
      animation-delay: 9s;
    }

    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
      100% {
        transform: translateY(0) rotate(360deg);
      }
    }

    /* Responsive design */
    @media (max-width: 1024px) {
      .sidebar {
        width: 240px;
      }
      
      .main-content {
        margin-left: 240px;
      }
    }

    @media (max-width: 768px) {
      .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
      }
      
      .main-content {
        margin-left: 0;
        padding: 30px 20px;
      }
      
      .intro-text {
        padding: 25px;
      }
      
      .intro-text h1 {
        font-size: 2rem;
      }
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--accent);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-light);
    }