.header-image { width: 100%; height: 300px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); } h1 { color: #1e3a8a; text-align: center; font-size: 2.5em; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0,0,0,0.1); } .content-wrapper { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); margin-bottom: 20px; } p { margin-bottom: 20px; text-align: justify; font-size: 16px; } .inline-image { width: 100%; max-width: 400px; height: 250px; object-fit: cover; border-radius: 8px; margin: 20px 0; float: right; margin-left: 20px; box-shadow: 0 3px 10px rgba(0,0,0,0.2); } .inline-image.left { float: left; margin-right: 20px; margin-left: 0; } .ad-banner { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 25px; text-align: center; border-radius: 12px; margin: 30px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.2); position: relative; overflow: hidden; } .ad-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent); transform: rotate(45deg); animation: shine 3s infinite; } @keyframes shine { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } } .ad-banner h3 { margin: 0 0 10px 0; font-size: 24px; position: relative; z-index: 1; } .ad-banner p { margin: 0; font-size: 16px; position: relative; z-index: 1; } .cta-button { background: #ff6b35; color: white; padding: 12px 25px; border: none; border-radius: 25px; font-size: 16px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; margin-top: 15px; position: relative; z-index: 1; } .cta-button:hover { background: #e55a2b; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(255,107,53,0.4); } .clearfix::after { content: ""; display: table; clear: both; } .sidebar-ad { background: #f0f8ff; border: 2px solid #1e90ff; padding: 20px; border-radius: 10px; margin: 20px 0; text-align: center; } .highlight-box { background: linear-gradient(135deg, #ffeaa7, #fab1a0); padding: 20px; border-radius: 10px; margin: 25px 0; border-left: 5px solid #e17055; } .stats-box { display: flex; justify-content: space-around; background: #2d3436; color: white; padding: 20px; border-radius: 10px; margin: 25px 0; text-align: center; } .stat-item { flex: 1; } .stat-number { font-size: 2em; font-weight: bold; color: #00cec9; } .contact-info { background: #e8f4f8; padding: 20px; border-radius: 10px; margin: 25px 0; border-left: 5px solid #00b894; } @media (max-width: 768px) { .inline-image { float: none; width: 100%; margin: 20px 0; } .stats-box { flex-direction: column; gap: 15px; } h1 { font-size: 2em; } }