/* 기본 스타일 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .logo a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header .logo a:hover {
    transform: scale(1.05);
}

.header .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header .nav {
    display: flex;
    align-items: center;
}

.header .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.header .nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
}

.header .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.header .nav-list a:hover {
    color: #3b82f6;
}

.header .nav-list a:hover::after {
    width: 100%;
}

.header .mobile-menu-btn {
    display: none;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 1001;
    text-shadow: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header .mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.header .mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
}

.header .mobile-menu-btn i {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
    display: block;
}

.header .mobile-menu-btn i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    border-radius: 1px;
}

.header .mobile-menu-btn:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.header .mobile-menu-btn:hover::before,
.header .mobile-menu-btn:hover::after,
.header .mobile-menu-btn:hover i {
    background: #1e40af;
}

.header .mobile-menu-btn.active {
    background: #f1f5f9;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.header .mobile-menu-btn.active::before,
.header .mobile-menu-btn.active::after,
.header .mobile-menu-btn.active i {
    background: #1e40af;
}

/* 모바일 메뉴 스타일 */
@media (max-width: 768px) {
    .header .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .header .nav-list.active {
        display: flex;
        transform: translateY(0);
    }
    
    .header .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .header .nav-list a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .header .nav-list a:hover {
        background: #f8fafc;
        color: #3b82f6;
        padding-left: 30px;
    }
}

/* 고정 헤더 스타일 */
.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    display: block;
}

.fixed-header.scrolled {
    background: transparent;
    box-shadow: none;
}

.fixed-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.fixed-header .logo a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fixed-header .logo a:hover {
    transform: scale(1.05);
}

.fixed-header .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.fixed-header .nav {
    display: flex;
    align-items: center;
}

.fixed-header .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.fixed-header .nav-list a {
    text-decoration: none;
    color: #333 !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
}

.fixed-header .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.fixed-header .nav-list a:hover {
    color: #3b82f6;
}

.fixed-header .nav-list a:hover::after {
    width: 100%;
}

.fixed-header .mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.fixed-header .mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.fixed-header .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.fixed-header .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.fixed-header .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.fixed-header .mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.fixed-header .mobile-nav.active {
    transform: translateY(0);
}

.fixed-header .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.fixed-header .mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.fixed-header .mobile-nav-list a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fixed-header .mobile-nav-list a:hover {
    background: #f8fafc;
    color: #3b82f6;
    padding-left: 30px;
}






/* 히어로 섹션 */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    margin-top: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
    margin-top: 0;
}

/* 히어로 헤더 */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.hero-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-logo a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-logo a:hover {
    transform: scale(1.05);
}

.hero-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hero-nav {
    display: flex;
    align-items: center;
}

.hero-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.hero-nav-list a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.hero-nav-list a:hover {
    color: #60a5fa;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-nav-list a:hover::after {
    width: 100%;
}

.hero-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hero-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hero-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hero-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 히어로 모바일 메뉴 */
.hero-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hero-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.hero-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.hero-mobile-menu-list li {
    margin: 20px 0;
}

.hero-mobile-menu-list a {
    display: block;
    padding: 20px 40px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-mobile-menu-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    transform: scale(1.05);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    margin-top: 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideInUp 1s ease-out;
}

.highlight {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    animation: bounce 2s infinite;
}

.cta-button.primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px) scale(1.05);
}

/* 히어로 섹션 */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    padding: 0 20px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: slideInUp 1s ease-out;
}

.highlight {
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-cta .cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    animation: bounce 2s infinite;
}

.hero-cta .cta-button.primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.hero-cta .cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.4);
}

.hero-cta .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-cta .cta-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px) scale(1.05);
}

/* 문제 제기 및 솔루션 섹션 */
.problem-solution {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="geometric" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(59,130,246,0.1)"/><rect x="10" y="10" width="20" height="20" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23geometric)"/></svg>');
    opacity: 0.4;
}

.problem-solution h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1e40af;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.problem-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e40af;
    text-align: center;
    position: relative;
    z-index: 1;
}

.problem-text .problem {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-style: italic;
    color: #1e40af;
    border-left: 5px solid #3b82f6;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.problem-text .problem::before {
    content: '❓';
    position: absolute;
    top: -10px;
    right: 15px;
    background: #3b82f6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-style: normal;
}

.problem-text .solution {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    padding: 20px;
    border-radius: 15px;
    color: #1e40af;
    border-left: 5px solid #0ea5e9;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.1);
}

.problem-text .solution::before {
    content: '✅';
    position: absolute;
    top: -10px;
    right: 15px;
    background: #0ea5e9;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* 주요 서비스 섹션 */
.core-offerings {
    padding: 120px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.core-offerings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.core-offerings h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.offering-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #1e40af);
}

.offering-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.offering-number {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.offering-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e40af;
    line-height: 1.3;
}

.offering-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-list li {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    position: relative;
}

.offering-list li::before {
    content: '✨';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.offering-list li:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.offering-list strong {
    color: #1e40af;
    font-weight: 700;
}

/* 상담 신청 섹션 */
.consultation-form {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.consultation-form-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(3px);
}

/* 새로운 섹션 */
.new-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,25 50,50 T100,50" stroke="rgba(59,130,246,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
}

.new-section-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.new-section-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.new-section-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.new-section-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.new-section-image:hover img {
    transform: scale(1.05);
}

/* 차별점 및 신뢰도 섹션 */
.credibility {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.credibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 40,15 40,35 25,45 10,35 10,15" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.credibility-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.credibility-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
    text-shadow: none;
}

.credibility-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.credibility-card {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.credibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credibility-card:hover::before {
    opacity: 1;
}

.credibility-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.credibility-card:nth-child(2) .card-icon {
    animation-delay: 0.5s;
}

.credibility-card:nth-child(3) .card-icon {
    animation-delay: 1s;
}

.credibility-card:nth-child(4) .card-icon {
    animation-delay: 1.5s;
}

.credibility-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.credibility-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 25px 25px 0 0;
}

.credibility-card:hover .card-highlight {
    transform: scaleX(1);
}

/* 상담하기 버튼 섹션 */
.consultation-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.consultation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-buttons .cta-button.primary {
    background: white;
    color: #1e40af;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    background: #f8fafc;
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .cta-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-3px) scale(1.05);
}

/* 푸터 */
.footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0 30px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo img {
    height: 60px;
    width: 300px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.footer-contact h3,
.footer-services h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 25px;
}

.contact-info p {
    color: #475569;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.contact-item svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-item span {
    display: flex;
    align-items: center;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.contact-info strong {
    color: #1e40af;
    font-weight: 600;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: #475569;
    margin-bottom: 8px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.footer-services li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 0.8rem;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-btn.phone-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.social-btn.phone-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.social-btn.kakao-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.social-btn.kakao-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.social-btn.email-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.social-btn.email-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* 플로팅 버튼들 */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.floating-btn:hover::before {
    left: 100%;
}

.phone-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.phone-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.kakao-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.kakao-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}

.top-btn {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    display: none;
}

.top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 커스텀 모달 스타일 */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: modalSlideIn 0.3s ease forwards;
    border-top: 4px solid #10b981;
}

.modal-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 0.5s ease;
}

.modal-icon svg {
    animation: iconRotate 0.5s ease;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-message {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
    white-space: pre-line;
}

.modal-button {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    min-width: 160px;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.modal-button:active {
    transform: translateY(0);
}

/* 모달 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(-180deg) scale(0);
    }
    100% {
        transform: rotate(0) scale(1);
    }
}

/* 모달 반응형 */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .modal-button {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .header .nav-list {
        display: none;
    }
    
    .header .mobile-menu-btn {
        display: block;
    }
    
    .header {
        height: 70px;
    }
    
    .header-content {
        height: 70px;
    }
    
    .header .logo img {
        height: 40px;
    }
    
    .header .nav-list {
        top: 70px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 0 15px;
    }
    
    /* 모바일에서 영상 자동재생 및 z-index 조정 */
    .hero-video {
        z-index: 0;
        pointer-events: none;
    }
    
    .hero-overlay {
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-content {
        z-index: 2;
        pointer-events: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .problem-solution {
        margin-top: 0;
    }
    
    .fixed-header .nav-list {
        display: none;
    }
    
    .fixed-header .mobile-toggle {
        display: flex;
    }
    
    .fixed-header .logo img {
        height: 40px;
        width: auto;
    }
    
    .fixed-header {
        height: 70px;
        background: transparent !important;
    }
    
    .fixed-header .header-content {
        height: 70px;
    }
    
    .fixed-header .mobile-nav {
        top: 70px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 0 15px;
    }
    
    .fixed-header.scrolled {
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .hero-nav-list {
        display: none;
    }
    
    .hero-mobile-toggle {
        display: flex;
    }
    
    .hero-logo img {
        height: 40px;
        width: auto;
    }
    
    .hero-header {
        padding: 15px 0;
    }
    
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .problem-solution {
        padding: 100px 0;
    }
    
    .problem-solution h2 {
        font-size: 2.5rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-card {
        padding: 30px 25px;
    }
    
    .core-offerings h2 {
        font-size: 2.5rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offering-card {
        padding: 30px 25px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .credibility-header h2 {
        font-size: 2.5rem;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .credibility-card {
        padding: 30px 25px;
    }
    
    .new-section {
        padding: 80px 0;
    }
    
    .new-section-image {
        margin: 0 20px;
    }
    
    .consultation-cta {
        padding: 90px 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .social-btn {
        flex: 1;
        min-width: 80px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .problem-card {
        padding: 25px 20px;
    }
    
    .problem-solution h2 {
        font-size: 2.2rem;
    }
    
    .problem-text .problem,
    .problem-text .solution {
        padding: 15px;
    }
    
    .core-offerings h2 {
        font-size: 2rem;
    }
    
    .offering-card {
        padding: 25px 20px;
    }
    
    .offering-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -12px;
        right: 20px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 18px;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .credibility-header h2 {
        font-size: 2rem;
    }
    
    .credibility-subtitle {
        font-size: 1.1rem;
    }
    
    .credibility-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .new-section {
        padding: 60px 0;
    }
    
    .new-section-image {
        margin: 0 15px;
    }
    
    .consultation-cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        max-width: none;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .social-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
}
