
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .header-banner {
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .header-text {
            color: white;
            font-size: 3.5rem;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .highlight-text {
            background: linear-gradient(45deg, #e91e63, #9c27b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .geometric-shape {
            position: absolute;
            top: 20px;
            right: 30px;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            transform: rotate(45deg);
        }

        /* Main Content */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
            align-items: center;
        }

        .amco-logo {
            font-size: 4rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .tagline {
            color: #3498db;
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .description {
            color: #2c3e50;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .badges-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .badge {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1e5799, #3498db);
            color: white;
            padding: 15px 25px;
            border-radius: 25px;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .badge::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 60px;
            height: 100%;
            background: linear-gradient(45deg, #e91e63, #f39c12, #3498db);
            border-radius: 0 25px 25px 0;
        }

        .badge-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
            font-size: 1.5rem;
        }

        /* Multiple Intelligences Section */
        .intelligences-section {
            margin: 60px 0;
        }

        .section-title {
            color: #2c3e50;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .section-description {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .intelligences-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .intelligence-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .intelligence-icon {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transform: rotate(45deg);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .intelligence-icon svg {
            transform: rotate(-45deg);
            width: 40px;
            height: 40px;
            fill: white;
        }

        .intelligence-label {
            font-size: 0.9rem;
            color: #2c3e50;
            font-weight: 500;
            max-width: 80px;
        }

        /* Colors for each intelligence */
        .linguistic { background: linear-gradient(135deg, #00bcd4, #0097a7); }
        .naturalist { background: linear-gradient(135deg, #8bc34a, #689f38); }
        .musical { background: linear-gradient(135deg, #ff5722, #d84315); }
        .visual { background: linear-gradient(135deg, #ffc107, #f57c00); }
        .intrapersonal { background: linear-gradient(135deg, #ff9800, #f57c00); }
        .logical { background: linear-gradient(135deg, #e91e63, #c2185b); }
        .kinesthetic { background: linear-gradient(135deg, #9c27b0, #7b1fa2); }
        .interpersonal { background: linear-gradient(135deg, #607d8b, #455a64); }

        /* Progress Line */
        .progress-line {
            width: 100%;
            height: 4px;
            background: #ecf0f1;
            border-radius: 2px;
            margin: 20px 0;
            position: relative;
        }

        .progress-dots {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: -6px;
            width: 100%;
        }

        .progress-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        /* Bottom Section */
        .bottom-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: end;
            margin-top: 60px;
        }

        .happy-to-learn {
            font-size: 4rem;
            color: #3498db;
            font-weight: 300;
            line-height: 1.2;
        }

        .student-image {
            text-align: right;
        }

        .student-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-text {
                font-size: 2.5rem;
            }
            
            .main-content,
            .bottom-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .intelligences-grid {
                justify-content: center;
            }
            
            .intelligence-item {
                margin: 10px;
            }
            
            .amco-logo {
                font-size: 3rem;
            }
            
            .happy-to-learn {
                font-size: 3rem;
                text-align: center;
            }
        }