<!DOCTYPE html><html lang="ko"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>GDLSI | ±Û·Î¹ú ±º¼ö Àü·« ¿¬±¸¼Ò</title> <style> :root { --primary-color: #0a192f; /* Deep Navy */ --accent-color: #172a45; --text-gold: #c5a059; /* Strategic Gold */ --text-light: #e6f1ff; } body { font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif; margin: 0; line-height: 1.6; color: #333; background-color: #f4f4f4; } /* Header & Navigation */ header { background: var(--primary-color); color: white; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--text-gold); } .logo { font-size: 1.5rem; font-weight: bold; letter-spacing: 1px; } nav a { color: white; text-decoration: none; margin-left: 20px; font-weight: 500; transition: 0.3s; } nav a:hover { color: var(--text-gold); } /* Hero Section */ .hero { background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url(https://images.unsplash.com/photo-1508614589041-895b88991e3e?auto=format&fit=crop&q=80&w=1500); /* ´ë¾È À̹ÌÁö */ background-size: cover; background-position: center; height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center; padding: 0 20px; } .hero h1 { font-size: 3rem; margin-bottom: 10px; } .hero p { font-size: 1.2rem; max-width: 800px; } /* Content Sections */ .container { max-width: 1200px; margin: 50px auto; padding: 0 20px; } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-top: 5px solid var(--primary-color); } .card h3 { color: var(--primary-color); margin-top: 0; } footer { background: var(--primary-color); color: #8892b0; text-align: center; padding: 30px 0; margin-top: 50px; } </style></head><body> <header> <div class="logo">GDLSI</div> <nav> <a href="#">¿¬±¸¼Ò ¼Ò°³</a> <a href="#">Àü·« ¸®Æ÷Æ®</a> <a href="#">°ø±Þ¸Á ºÐ¼®</a> <a href="#">ÄÁÆÛ·±½º</a> <a href="#">¹®ÀÇ</a> </nav> </header> <section class="hero"> <h1>Global Defense Logistics Strategy Institute</h1> <p>Àü·«Àû ±º¼ö Çõ½ÅÀ» ÅëÇØ ±Û·Î¹ú ¾Èº¸ÀÇ ¹Ì·¡¸¦ ¼³°èÇÕ´Ï´Ù.</p> </section> <div class="container"> <h2 style="text-align:center; margin-bottom:40px;">ÇÙ½É ¿¬±¸ ºÐ¾ß</h2> <div class="grid"> <div class="card"> <h3>ÁöÁ¤ÇÐÀû °ø±Þ¸Á ¸®½ºÅ©</h3> <p>±Û·Î¹ú ÆÐ±Ç °æÀï¿¡ µû¸¥ ±¹¹æ ¹°ÀÚ °ø±Þ¸ÁÀÇ Ãë¾àÁ¡À» ºÐ¼®Çϰí ȸº¹ ź·Â¼º È®º¸ ¹æ¾ÈÀ» Á¦½ÃÇÕ´Ï´Ù.</p> </div> <div class="card"> <h3>¹Ì·¡ ±º¼ö ±â¼ú Çõ½Å</h3> <p>AI ±â¹Ý ¿¹Ãø Á¤ºñ, ÀÚÀ² ÁÖÇà ¼ö¼Û, 3D ÇÁ¸°ÆÃ ÇöÀå Á¦Á¶ µî ÷´Ü ±â¼úÀÇ ±º»çÀû Àû¿ëÀ» ¿¬±¸ÇÕ´Ï´Ù.</p> </div> <div class="card"> <h3>Áö¼Ó °¡´ÉÇÑ ±¹¹æ ¹°·ù</h3> <p>¿¡³ÊÁö È¿À²È ¹× ź¼Ò Á߸³ ½Ã´ë¿¡ ºÎÇÕÇÏ´Â Â÷¼¼´ë ±º¼ö ü°è¿Í ÀÚ¿ø °ü¸® Àü·«À» ¼ö¸³ÇÕ´Ï´Ù.</p> </div> </div> </div> <footer> <p>© 2026 Global Defense Logistics Strategy Institute. All Rights Reserved.</p> <p>¼¿ïƯº°½Ã Áß±¸ ±¹¹æÀü·«±æ 100 | info@gdlsi.org</p> </footer></body></html>