body {
    overflow-x: hidden;
    margin: 0; /* 기본 마진 제거 */
    padding-top: 70px; /* 헤더 높이만큼 상단 패딩 추가 */
}

.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1030;
    left: 0;
    background-color: rgba(255, 255, 255, 0.9); /* 배경색을 약간 투명하게 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 더 두드러진 그림자 */
    transition: background-color 0.3s, box-shadow 0.3s;
    font-weight: 700;
}

.fixed-top.scrolled {
    background-color: #007bff; /* 스크롤 시 헤더 배경색 블루 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* 스크롤 시 더 강한 그림자 */
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #dc3545; /* 브랜드 이름 색상 크림슨 */
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.logo {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.navbar-brand:hover .logo {
    transform: scale(1.1); /* 로고 확대 */
}

.navbar-brand:hover .brand-name {
    color: #ff6f61; /* 브랜드 이름 호버 시 코랄 색상 */
}

.nav-link {
    margin-right: 10px;
    font-weight: 500;
    color: #007bff; /* 기본 링크 색상 블루 */
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #ff6f61; /* 코랄 색상 */
    transform: scale(1.1); /* 링크 확대 */
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
    }
}


.section {
    position: relative;
    z-index: 1; /* 기본 섹션 z-index */
    max-width: 100%;
    box-sizing: border-box;
}

/* hero */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff6f61, #007bff); /* 그라데이션 배경 */
    z-index: 1;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    opacity: 0.8; /* 약간 투명하게 */
}

/* 비디오 오버레이 설정 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 검정색 반투명 오버레이 */
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white; /* 텍스트 색상 */
    animation: fadeIn 2s ease-in-out; /* 페이드 인 애니메이션 */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* 텍스트 그림자 */
    animation: zoomIn 1.5s ease-in-out; /* 줌 인 애니메이션 */
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* 버튼 색상 스타일링 */
.btn-blue {
    background: linear-gradient(135deg, #007bff, #0056b3); /* 블루 그라디언트 */
    color: #ffffff;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #0056b3, #004099);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.btn-coral {
    background: linear-gradient(135deg, #ff6f61, #e55b50); /* 코랄 그라디언트 */
    color: #ffffff;
}

.btn-coral:hover {
    background: linear-gradient(135deg, #e55b50, #cc473f);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.btn-crimson {
    background: linear-gradient(135deg, #dc3545, #b52a36); /* 크림슨 그라디언트 */
    color: #ffffff;
}

.btn-crimson:hover {
    background: linear-gradient(135deg, #b52a36, #922024);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        font-size: 16px;
    }
}



/* about us */
/* About Us section styling */
.about-us {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
}

.about-us .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.about-us h3 {
    font-size: 28px;
    color: #555; /* 중간 회색 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1.2s ease-out;
}

.about-us p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    margin-bottom: 20px;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.contact-box {
    background-color: #f1f1f1; /* 밝은 회색 배경 */
    border: 1px solid #ddd; /* 밝은 회색 테두리 */
    border-radius: 8px; /* 모서리 둥글게 */
    padding: 20px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-box p {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.contact-box i {
    margin-right: 8px;
    transition: color 0.3s ease;
}

.contact-box .fa-phone {
    color: #dc3545; /* 크림슨 */
}

.contact-box .fa-envelope {
    color: #007bff; /* 블루 */
}

.contact-box p:hover .fa-phone,
.contact-box p:hover .fa-envelope {
    color: #ff6f61; /* 코랄 */
}

.contact-box a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box .phone-number {
    color: #dc3545; /* 이메일 링크 기본 색상 블루 */
}

.contact-box .email-address {
    color: #007bff; /* 이메일 링크 기본 색상 블루 */
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-box .phone-number:hover {
    color: #ff6f61; /* 코랄 */
}

.contact-box .email-address:hover {
    color: #ff6f61; /* 코랄 */
}

.about-us .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff; /* 블루 */
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary-alt {
    background-color: #ff6f61; /* 코랄 */
    border: 2px solid #ff6f61;
}

.btn-primary-alt:hover {
    background-color: #e55b50;
    border-color: #e55b50;
}

.btn-secondary {
    background-color: #dc3545; /* 크림슨 */
    border: 2px solid #dc3545;
}

.btn-secondary:hover {
    background-color: #b52a36;
    border-color: #b52a36;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 28px;
    }

    .about-us h3 {
        font-size: 24px;
    }

    .about-us p {
        font-size: 16px;
    }

    .contact-box {
        padding: 15px;
        max-width: 100%;
    }
}






/* services */
.services {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: translateX(-50%) translateY(-50%) rotate(30deg);
    transition: transform 0.5s ease;
}

.services:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(0deg); /* 배경 회전 애니메이션 */
}

.services .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.services-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 최소 300px, 최대 1fr로 3열 레이아웃 */
    gap: 20px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1));
    z-index: -1;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scale(1.1);
}

.service-item i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.service-item:hover i {
    color: #ff6f61; /* 호버 시 아이콘 색상 코랄 */
}

.service-item:hover h3 {
    color: #007bff; /* 호버 시 제목 색상 블루 */
}

.service-item:hover p {
    color: #333; /* 호버 시 본문 색상 진한 회색 */
}

.services-cta {
    margin-top: 40px;
}

.services-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #007bff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-cta .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 중간 크기의 디바이스에서 최소 250px, 최대 1fr로 변경 */
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* 모바일 디바이스에서 1열로 변경 */
    }
}




/* cases */
.case-studies {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.case-studies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: translateX(-50%) translateY(-50%) rotate(30deg);
    transition: transform 0.5s ease;
}

.case-studies:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(0deg); /* 배경 회전 애니메이션 */
}

.case-studies .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.case-studies-header {
    margin-bottom: 40px;
}

.case-studies-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.case-studies-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3열 레이아웃 */
    gap: 20px;
}

.case-study-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.case-study-item:hover img {
    transform: scale(1.1);
}

.case-study-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-item:hover .overlay {
    opacity: 1;
}

.case-study-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.case-study-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .case-studies-header h2 {
        font-size: 28px;
    }

    .case-studies-header p {
        font-size: 16px;
    }

    .case-study-item h3 {
        font-size: 20px;
    }

    .case-study-item p {
        font-size: 14px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr; /* 모바일 디바이스에서 1열로 변경 */
    }
}



/* pricing */
.pricing {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1));
    transform: translateX(-50%);
    z-index: 0;
    animation: backgroundMove 10s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
    100% { transform: translateX(-50%) translateY(0); }
}

.pricing .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
}

.pricing .description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.pricing-services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* 주요 서비스 카드의 배경을 진한 그라디언트로, 글씨 색상을 밝은 흰색으로 변경 */
.pricing-service-item {
    background: linear-gradient(135deg, #007bff, #0056b3); /* 진한 그라디언트 배경 */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* 글씨 색상 흰색 */
}

.pricing-service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)); /* 흰색 그라디언트 */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-service-item:hover::before {
    opacity: 1;
}

.pricing-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.pricing-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* 템플릿 기반 반응형 웹 */
.pricing-service-item.template {
    background: linear-gradient(135deg, #007bff, #0056b3); /* 진한 블루 그라디언트 배경 */
    color: #ffffff; /* 글씨 색상 흰색 */
}

.pricing-service-item.template:hover {
    background: linear-gradient(135deg, #ff6f61, #ff856d); /* 코랄 색상으로 변경 */
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* 고객 맞춤형 반응형 웹 */
.pricing-service-item.custom {
    background: linear-gradient(135deg, #dc3545, #b52a36); /* 진한 크림슨 그라디언트 배경 */
    color: #ffffff; /* 글씨 색상 흰색 */
}

.pricing-service-item.custom:hover {
    background: linear-gradient(135deg, #ff6f61, #ff856d); /* 코랄 색상으로 변경 */
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.pricing-service-header i {
    font-size: 2rem;
    color: #ffffff; /* 아이콘 색상 흰색 */
}

.pricing-service-header h3 {
    font-size: 24px;
    color: #ffffff; /* 제목 색상 흰색 */
}

.pricing-service-body .price {
    font-size: 20px;
    color: #ffffff; /* 가격 색상 흰색 */
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-service-body .description {
    font-size: 16px;
    color: #ffffff; /* 설명 색상 흰색 */
}

.pricing-service-footer {
    margin-top: 20px;
} 
.pricing-service-footer.template .btn {
    background: linear-gradient(135deg, #007bff, #00a2ff); /* Gradient background */
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 24px;
    border-radius: 25px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); /* Subtle shadow */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.pricing-service-footer.template .btn:hover {
    background: linear-gradient(135deg, #0056b3, #007bff); /* Darker gradient on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4); /* Stronger shadow on hover */
}

.pricing-service-footer.custom .btn {
    background: linear-gradient(135deg, #dc3545, #ff6b6b); /* Gradient background */
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 24px;
    border-radius: 25px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3); /* Subtle shadow */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.pricing-service-footer.custom .btn:hover {
    background: linear-gradient(135deg, #b52a36, #dc3545); /* Darker gradient on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4); /* Stronger shadow on hover */
}

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.or-divider span {
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #666;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.or-divider span:hover {
    background-color: #ff6f61;
    color: #ffffff;
}

.options-title {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-item {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(255, 111, 97, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-item:hover::before {
    opacity: 1;
}

.option-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.option-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.option-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.option-item .price {
    font-size: 18px;
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 5px;
}

.option-item .description {
    font-size: 14px;
    color: #666;
}

.pricing-services-cta {
    margin-top: 40px;
}

.pricing-services-cta .btn {
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 30px;
    background-color: #007bff;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-services-cta .btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .pricing-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-service-item {
        max-width: 100%;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in-out;
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px; /* Increased for better layout */
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.5s ease-in-out;
}

.modal-content h2 {
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    text-align: left;
    margin-top: 20px;
}

.comparison-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.comparison-section {
    flex: 1;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.comparison-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.comparison-section ul {
    padding-left: 20px;
}

.comparison-section li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

/* Animation for modal */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes zoomIn {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
}


/* Additional CSS for improved design
.pricing .or-divider {
    text-align: center;
    margin: 20px 0;
}

#or-button {
    background-color: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

#or-button:hover {
    background-color: #e55b50;
    transform: scale(1.1);
} */


/* Pricing Calculator */
.pricing-calculator {
    background-color: #f7f7f7;
    color: #333;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-calculator::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1));
    z-index: 0;
    transform: rotate(-30deg);
}

.pricing-calculator .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-calculator h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.calculator-form {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

.calculator-form .form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.calculator-form .button-group {
    text-align: center;
}

.calculator-form label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.calculator-form select,
.calculator-form input[type="checkbox"] {
    margin-top: 10px;
    margin-bottom: 10px;
}

.calculator-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.calculator-form select:focus {
    border-color: #007bff;
    outline: none;
}

.calculator-form .options label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.calculator-form .options input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.calculator-form .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border: 2px solid #000;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-form .btn-outline:hover {
    background-color: #000;
    color: #fff;
}

.calculator-form .btn-coral {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border: 2px solid #ff6f61;
    border-radius: 0;
    background-color: #fff;
    color: #ff6f61;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-form .btn-coral:hover {
    background-color: #ff6f61;
    color: #fff;
}

.calculator-form h3 {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-calculator h2 {
        font-size: 28px;
    }

    .calculator-form {
        padding: 15px;
    }

    .calculator-form .form-group {
        font-size: 14px;
    }

    .calculator-form .btn-outline,
    .calculator-form .btn-coral {
        font-size: 14px;
    }

    .calculator-form h3 {
        font-size: 20px;
    }
}




/* Payment Modal styling */
#payment-modal .modal-content {
    background-color: #ffffff;
    padding: 30px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.5s ease-in-out;
}

#payment-modal .modal-content h2 {
    text-align: center;
    color: #dc3545; /* 크림슨 색상 */
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#payment-modal .close-payment-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

#payment-modal .close-payment-modal:hover,
#payment-modal .close-payment-modal:focus {
    color: #000;
}

#payment-modal .modal-body {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

#payment-modal .modal-body p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

#payment-modal .modal-body .label {
    font-weight: bold;
    color: #dc3545; /* 크림슨 색상 */
    flex: 0 0 120px; /* 고정된 너비를 설정하여 간격을 맞춤 */
}

#payment-modal .modal-body .value {
    color: #007bff; /* 블루 색상 */
    margin-left: 10px; /* :와 내용 사이의 가로간격 */
}

#payment-modal .account-number {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
}

#payment-modal .account-number:hover {
    color: #ff6f61;
}

#payment-modal .modal-body .account-number::after {
    content: ' (클릭하여 복사)';
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

@media (max-width: 768px) {
    #payment-modal .modal-content {
        width: 95%;
        margin: 30% auto;
        padding: 15px;
    }

    #payment-modal .modal-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    #payment-modal .modal-body {
        font-size: 16px;
    }

    #payment-modal .modal-body .account-number::after {
        font-size: 12px;
    }
}




/* clients */
.clients {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
}

.clients .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.clients-header {
    margin-bottom: 40px;
}

.clients-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.clients-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 최소 200px, 최대 1fr로 더 많은 열 배치 */
    gap: 20px;
}

.client-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* 3D 효과를 위한 원근 */
}

.client-item:hover {
    transform: translateY(-10px) rotateY(10deg); /* 호버 시 Y축 회전 */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
    height: 100px; /* 이미지의 높이를 더 작게 설정 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 이미지가 contain fit으로 들어가도록 설정 */
    transition: transform 0.3s ease;
}

.client-item:hover .client-logo img {
    transform: scale(1.1) rotateY(-10deg); /* 호버 시 이미지 확대와 회전 */
}

.client-item p {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.client-item:hover p {
    color: #007bff; /* 호버 시 텍스트 색상 변경 */
}

.client-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(255, 111, 97, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
    transition: transform 0.5s ease;
}

.client-item:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr); /* 태블릿에서 3열로 변경 */
    }
}

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 28px;
    }

    .clients-header p {
        font-size: 16px;
    }

    .client-item p {
        font-size: 14px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 모바일 디바이스에서 2열로 변경 */
    }

    .client-logo {
        height: 80px; /* 모바일 디바이스에서 이미지 높이 조정 */
    }
}







/* contact */
.contact {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.2), rgba(0, 123, 255, 0.2)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
}

.contact:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

.contact .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.contact-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}



.contact button[type="submit"] {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    border: 2px solid #007bff;
    border-radius: 0;
    background-color: #fff;
    color: #007bff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact button[type="submit"]:hover {
    background-color: #007bff;
    color: #fff;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* 폼과 지도 사이에 간격 추가 */
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
    margin: 20px 0;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.contact-form h3,
.contact-info h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.form-group label i {
    margin-right: 10px;
    color: #007bff;
    animation: beat 1s infinite;
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    transform: scale(1.02);
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info p:hover i {
    color: #ff6f61; /* 코랄 색상 */
    transform: scale(1.2);
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6f61; /* 코랄 */
    text-decoration: underline;
}

.contact-info .map {
    margin-top: 30px; /* 지도와 연락처 정보 사이에 간격 추가 */
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #007bff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 10px 0;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }
}















/* footer */
.footer {
    background-color: #f7f7f7; /* 밝은 회색 배경 */
    color: #333; /* 어두운 텍스트 */
    padding: 40px 20px;
    text-align: left; /* 텍스트를 왼쪽 정렬 */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
    transition: transform 0.5s ease;
}

.footer:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 공간을 균등하게 배분 */
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo,
.footer-company-info,
.footer-contact,
.footer-links {
    flex: 1 1 250px;
    margin: 20px;
    position: relative;
}

.footer-logo {
    text-align: center; /* 로고와 이름을 가운데 정렬 */
    animation: fadeIn 1s ease-in-out;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-logo p {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: bold;
    color: #555; /* 중간 회색 텍스트 */
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333; /* 어두운 텍스트 */
    animation: slideIn 1s ease-out;
}

.footer p,
.footer a {
    font-size: 16px;
    color: #555; /* 중간 회색 텍스트 */
    margin-bottom: 10px;
    line-height: 1.6; /* 줄 간격을 넓혀 가독성 향상 */
    text-decoration: none;
    animation: fadeIn 1.5s ease-out;
}

.footer a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-out;
}

.footer ul li a {
    color: #555; /* 중간 회색 텍스트 */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer ul li a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer-contact a {
    color: #555; /* 중간 회색 텍스트 */
    text-decoration: none;
}

.footer-contact a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer .footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd; /* 밝은 회색 테두리 */
    margin-top: 20px;
    font-size: 14px;
    color: #555; /* 중간 회색 텍스트 */
    animation: fadeIn 2s ease-out;
}

.footer i {
    margin-right: 10px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: beat 1.5s infinite;
}

.footer p:hover i,
.footer ul li a:hover i {
    color: #ff6f61; /* 코랄 */
    transform: scale(1.2);
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo,
    .footer-company-info,
    .footer-contact,
    .footer-links {
        flex: 1 1 125px;
        margin: 10px 0;
        width: 100%; /* 전체 너비를 차지하도록 설정 */
    }

    .footer-logo {
        text-align: center; /* 로고 섹션은 가운데 정렬 유지 */
    }
}


/* floatings */
.floating-buttons.left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons.right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    width: auto;
}

.floating-button.blue {
    background-color: #007bff;
}

.floating-button.blue:hover {
    background-color: #0056b3;
}

.floating-button.coral {
    background-color: #ff6f61;
}

.floating-button.coral:hover {
    background-color: #e55b50;
}

.floating-button.crimson {
    background-color: #dc3545;
}

.floating-button.crimson:hover {
    background-color: #b52a36;
}

.floating-button i {
    margin-left: 10px;
}

.kakao-button img {
    width: 64px;
    height: 64px;
}

.kakao-button {
    padding: 0;
    box-shadow: none;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .floating-buttons.left {
        bottom: 10px;
        left: 10px;
    }
    
    .floating-buttons.right {
        bottom: 10px;
        right: 10px;
    }

    .floating-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .kakao-button img {
        width: auto;
        height: 40px;
    }
}
