* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #1a6d38;
            --secondary: #e9b949;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --accent: #d35400;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .header1 {
            background: linear-gradient(rgba(26, 109, 56, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: white;
            padding: 80px 0 100px;
            text-align: center;
            position: relative;
        }
        
        .header-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        h1 {
            font-family: 'Robot', Arial;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        .subtitle {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Introduction Section */
        .intro {
            background-color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .intro-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro p {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        /* Experiences Section */
        .experiences {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .experience-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .experience-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-number {
            display: inline-block;
            background: var(--primary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            font-weight: bold;
            font-size: 1.6rem;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .card-location {
            display: flex;
            align-items: center;
            color: black;
            font-weight: 500;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .card-location i {
            margin-right: 8px;
        }
        
        .keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .keyword {
            background: rgb(0, 128, 0)
;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .card-description {
            color: #555;
            margin-bottom: 15px;
        }
        
        .card-highlight {
            font-style: italic;
            color: var(--primary);
            font-weight: 500;
            border-left: 3px solid var(--secondary);
            padding-left: 10px;
        }
        
        /* Call to Action */
        .cta {
            background: linear-gradient(to right, var(--primary), #2c3e50);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background: black;
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: green;
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
        }
        
         /* Blog Navigation Links */
        .blog-nav {
          display: flex;
          justify-content: space-between;
          margin: 2.8rem 0;
        }
        .blog-nav a {
          font-family: 'Roboto', sans-serif;
          font-weight: 500;
          font-size: 1.6rem;
          color: #169e11;
          padding: 0.75rem 1.25rem;
          border-radius: 8px;
          transition: background-color 0.3s ease;
        }
        .blog-nav a:hover {
          color: #e26009;
        }
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .intro p {
                font-size: 1rem;
            }
            
            .experience-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .experience-card {
            animation: fadeIn 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        /* Delay animations for each card */
        .experience-card:nth-child(1) { animation-delay: 0.1s; }
        .experience-card:nth-child(2) { animation-delay: 0.2s; }
        .experience-card:nth-child(3) { animation-delay: 0.3s; }
        .experience-card:nth-child(4) { animation-delay: 0.4s; }
        .experience-card:nth-child(5) { animation-delay: 0.5s; }
        .experience-card:nth-child(6) { animation-delay: 0.6s; }
        .experience-card:nth-child(7) { animation-delay: 0.7s; }
        .experience-card:nth-child(8) { animation-delay: 0.8s; }
        .experience-card:nth-child(9) { animation-delay: 0.9s; }
        .experience-card:nth-child(10) { animation-delay: 1.0s; }