/* style_company.css */

@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.css');

  .contact-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
  }
  .contact-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .contact-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 10px;
  }
  .contact-header p {
    font-size: 18px;
    color: #666;
  }
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-info {
    flex: 1;
    min-width: 400px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  .contact-info h2 {
    font-size: 24px;
    border-bottom: 2px solid #1a365d;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  .contact-info li strong {
    display: inline-block;
    width: 80px;
    color: #1a365d;
  }
  .contact-map {
    flex: 2;
	min-width:400px;
	max-width: 800px;
  }
  .map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #64748b;
    font-weight: bold;
  }
  
  