 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; } body { background: #ffffff; color: #222; line-height: 1.8; } .container { max-width: 1200px; margin: 0 auto; padding: 60px 25px; } /* Header */ .trinity-header { text-align: center; padding-bottom: 40px; margin-bottom: 50px; border-bottom: 1px solid #D4AF37; } .trinity-header h1 { font-size: 44px; color: #D4AF37; margin-bottom: 15px; font-weight: 600; } .trinity-header p { font-size: 18px; color: #555; font-style: italic; } /* Section */ .section { margin-bottom: 60px; } .section h2 { font-size: 28px; color: #222; margin-bottom: 25px; padding-left: 16px; position: relative; font-weight: 500; } .section h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 28px; background: #D4AF37; } .section p { font-size: 16px; color: #555; margin-bottom: 18px; text-align: justify; } /* Trinity Cards */ .trinity-group { display: flex; gap: 30px; margin-top: 30px; } .trinity-card { flex: 1; background: #f8f8f8; border: 1px solid #eee; border-radius: 12px; overflow: hidden; transition: 0.3s ease; } .trinity-card:hover { border-color: #D4AF37; box-shadow: 0 8px 25px rgba(212,175,55,0.08); transform: translateY(-5px); } .trinity-img { width: 100%; height: 240px; object-fit: cover; } .trinity-body { padding: 30px; } .trinity-card h3 { font-size: 20px; color: #D4AF37; margin-bottom: 15px; font-weight: 500; } .trinity-card p { font-size: 15px; color: #666; line-height: 1.7; } /* Footer */ .page-footer { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid #eee; font-size: 16px; color: #D4AF37; font-style: italic; line-height: 1.8; } /* Responsive */ @media (max-width: 992px) { .trinity-group { flex-wrap: wrap; } .trinity-card { flex: 100%; } } 