* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.navbar {
    background-color: #333;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover, .nav-menu a.active {
    background-color: #555;
}

.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

#home-content {
    text-align: center;
    padding: 2rem 1rem;
}

.welcome-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.welcome-icon {
    margin-bottom: 1.5rem;
}

.welcome-card h1 {
    color: #1976D2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background: #E3F2FD;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: #1976D2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    max-width: 80%;
}

.message.system {
    background-color: #f0f0f0;
    margin-left: 0;
}

.message.user {
    background-color: #007bff;
    color: white;
    margin-left: auto;
}

.message.assistant {
    background-color: #f8f9fa;
    margin-right: auto;
}

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 1rem;
}

#chat-input {
    flex-grow: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

/* Upload styles */
.upload-container, .analysis-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.upload-form, .analysis-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.file-input-container {
    margin-bottom: 1rem;
}

.upload-result, .analysis-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
}

.upload-result.success {
    background-color: #d4edda;
    color: #155724;
}

.upload-result.error {
    background-color: #f8d7da;
    color: #721c24;
}

.file-list {
    margin-top: 2rem;
}

.file-list h3 {
    margin-bottom: 1rem;
}

.file-list ul {
    list-style: none;
}

.file-list li {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
}

/* Analysis styles */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: bold;
}

.input-group input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.image-analysis-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-section {
    width: 100%;
    min-height: 300px;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px;
}

#previewImage {
    max-width: 100%;
    max-height: 300px;
    display: none; /* 기본적으로 숨김 */
}

#analyzeImageBtn {
    width: 100%;
    padding: 15px;
    background-color: #1976D2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#analyzeImageBtn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#analyzeImageBtn:not(:disabled):hover {
    background-color: #1565C0;
}

.result-component {
    padding: 20px;
    background-color: #E3F2FD;
    border-radius: 4px;
    border: 1px solid #1976D2;
}

.result-title {
    font-size: 18px;
    font-weight: bold;
    color: #1976D2;
    margin-bottom: 10px;
}

.result-value {
    font-size: 16px;
    color: #333;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
}

/* 기존 스타일 유지 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.content {
    padding: 20px;
}



.upload-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.upload-container h2 {
    color: #1976D2;
    margin-bottom: 20px;
    text-align: center;
}

.upload-form {
    text-align: center;
}

.file-input-container {
    margin-bottom: 20px;
}

.file-input-container input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
}

.upload-form button {
    padding: 12px 30px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.upload-form button:hover {
    background-color: #1976D2;
}

.upload-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.upload-result.success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #4CAF50;
}

.upload-result.error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #F44336;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.file-name {
    font-weight: bold;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 0.9em;
}

.delete-btn {
    padding: 5px 10px;
    background-color: #F44336;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.delete-btn:hover {
    background-color: #D32F2F;
}

/* index.html에서 가져온 스타일들 */
.analysis-form {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
}
.result-component {
    margin: 20px;
    padding: 20px;
    border: 1px solid #2196F3;
    border-radius: 8px;
    background-color: #E3F2FD;
    display: none;
}
.result-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1976D2;
}
.result-value {
    font-size: 24px;
    color: #0D47A1;
}
.feature-list {
    margin-top: 15px;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
}
button {
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #1976D2;
}
.image-analysis-form {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.file-upload-section {
    margin-bottom: 20px;
}
.preview-section {
    margin-top: 20px;
    text-align: center;
}
#previewImage {
    max-width: 100%;
    max-height: 400px;
    display: none;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* 네비게이션 반응형 스타일 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #1976D2;
    color: white;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #1976D2;
        flex-direction: column;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 1rem;
        text-align: center;
    }

    /* 햄버거 메뉴 애니메이션 */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -5px);
    }
}
.quick-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}
.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}
.quick-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.quick-link.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.quick-link.department {
    background: linear-gradient(135deg, #4CAF50, #45A049);
}

.quick-link.demo {
    background: linear-gradient(135deg, #1976D2, #1565C0);
}

.quick-link svg {
    transition: transform 0.2s ease;
}
.welcome-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 20px;
}
.welcome-icon {
    margin-bottom: 20px;
}
.welcome-subtitle {
    color: #666;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .quick-links {
        flex-direction: column;
        padding: 0 20px;
    }
    .quick-link {
        width: 100%;
        justify-content: center;
    }
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}
.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(25, 118, 210, 0.1);
    border-color: #1976D2;
}
.service-icon {
    margin-bottom: 20px;
    background-color: #E3F2FD;
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background-color: #1976D2;
}
.service-card:hover .service-icon svg {
    fill: white;
}
.service-card h3 {
    margin: 0 0 10px 0;
    color: #1976D2;
    font-size: 1.25rem;
}
.service-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    .service-card {
        min-height: 180px;
        padding: 20px;
    }
}
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}
.quiz-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.quiz-section h3 {
    color: #1976D2;
    margin-bottom: 15px;
    border-bottom: 2px solid #E3F2FD;
    padding-bottom: 10px;
}
.quiz-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.quiz-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #F5F5F5;
    border-radius: 8px;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}
.quiz-item:hover {
    background-color: #E3F2FD;
}
.quiz-title {
    color: #333;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    padding-right: 15px;
}
.quiz-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.quiz-link, .solution-link {
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}
.quiz-link {
    color: #1976D2;
    background-color: #E3F2FD;
}
.solution-link {
    color: #4CAF50;
    background-color: #E8F5E9;
}
.quiz-link:hover {
    background-color: #1976D2;
    color: white;
}
.solution-link:hover {
    background-color: #4CAF50;
    color: white;
}
@media (max-width: 768px) {
    .quiz-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
    }
    .quiz-title {
        padding-right: 0;
        margin-bottom: 8px;
        font-size: 15px;
    }
    .quiz-links {
        justify-content: space-between;
    }
    .quiz-link, .solution-link {
        flex: 1;
        padding: 10px 8px;
    }
    .quiz-section {
        margin: 10px;
    }
    .quiz-section h3 {
        font-size: 18px;
        padding: 10px;
    }
}
/* 드롭다운 메뉴 스타일 */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1976D2;
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 전시회 페이지 스타일 */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.15);
    border-color: #1976D2;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976D2, #42A5F5);
}

.team-info {
    text-align: center;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1976D2;
    margin-bottom: 8px;
}

.project-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.member-tag {
    background: #E3F2FD;
    color: #1976D2;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.video-btn, .output-btn {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

.video-btn:hover, .output-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}



.output-btn {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.output-btn:hover {
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.view-project-btn {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.view-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

/* 모달 스타일 */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    z-index: 1001;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    color: #1976D2;
    transform: scale(1.1);
}

.modal-header {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    color: white;
    padding: 30px;
    border-radius: 16px 16px 0 0;
}

.modal-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.project-details {
    margin-bottom: 30px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h3 {
    color: #1976D2;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #E3F2FD;
    padding-bottom: 8px;
}

.detail-content {
    line-height: 1.6;
    color: #333;
}

.video-section {
    margin-top: 30px;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.video-link {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .card-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .video-btn, .output-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}



/* 연락처 페이지 스타일 */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.contact-card h2 {
    color: #1976D2;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E3F2FD;
    text-align: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.info-item:hover {
    background: #E3F2FD;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.info-item svg {
    flex-shrink: 0;
}
.info-item span {
    font-weight: 500;
    color: #1976D2;
    min-width: 80px;
}
.info-item p {
    margin: 0;
    color: #333;
    cursor: pointer;
}
@media (max-width: 768px) {
    .contact-container {
        padding: 10px;
    }
    .contact-card {
        padding: 20px;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .info-item span {
        min-width: auto;
    }
}

/* Dify 챗봇 스타일 */
#dify-chatbot-bubble-button {
    background-color: #1C64F2 !important;
}
#dify-chatbot-bubble-window {
    width: 24rem !important;
    height: 40rem !important;
} 