       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color:#79AC92;
            /*background: linear-gradient(135deg, #FFFFF0 0%, #EDE8D0 100%);*/
            min-height: 100vh;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        .container {
            max-width: 1200px;
            box-sizing: border-box;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .header-content {
            flex: 1;
            text-align: center;
        }

        .header-image {
            flex-shrink: 0;
        }

        .header-image img{
            width: 200px;
            height: auto;
        }

        h1 {
            font-size: 3.5rem;
            color: #4a5568;
            margin-bottom: 10px;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #718096;
            font-weight: 300;
        }

        main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease-out;
        }

        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        section:nth-child(1) { animation-delay: 0.1s; }
        section:nth-child(2) { animation-delay: 0.2s; }
        section:nth-child(3) { animation-delay: 0.3s; }

        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #4a5568;
            position: relative;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.14rem;
            margin-bottom: 20px;
            color: #4a5568;
            position: relative;
        }

        p {
            color: #718096;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            fill: #667eea;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            /*background: linear-gradient(135deg, #667eea, #764ba2);*/
            background:#79AC92;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        footer {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 25px 15px; /* Match container's horizontal padding */
                margin: 0; /* Remove any default margins */
                box-sizing: border-box; /* Ensure padding is included in width */
            }
            
            main {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0; /* Remove any padding from main */
                margin: 0; /* Remove any margins from main */
            }
            
            .header-image img {
                width: 100px;
            }
        }