/* 도티마 스타일 적용 CSS */

/* 전체 섹션 배경 및 기본 폰트 색상 설정 */
.dotima-style-section {
    background-color: #121212; /* 진한 다크 배경 */
    color: #f0f0f0; /* 밝은 폰트 색상 */
    padding: 0; /* 섹션 자체 패딩 제거 */
}

/* 제목 스타일 */
.dotima-style-section .pageTit {
    color: #f0f0f0;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 60px 20px 30px;
    background-color: #1a1a1a;
}

/* 콘텐츠 랩퍼 (여백 및 중앙 정렬) */
.dotima-style-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 메인 슬로건 섹션 - 다이나믹한 헤드라인 */
.dotima-style-slogan {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(45deg, #1e1e1e, #121212); /* 그라데이션 효과 */
    border-radius: 10px;
    margin-bottom: 40px;
}

.dotima-style-slogan h2 strong {
    font-size: 3.5rem; /* 대형 폰트 */
    color: #00bcd4; /* 강조색 - 로얄블루 느낌 */
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 900;
}

.dotima-style-slogan h2 span {
    font-size: 1.5rem;
    color: #aaa;
    display: block;
    margin-top: 10px;
}

/* 일반 텍스트 박스 스타일 */
.dotima-style-text-box {
    background-color: #1a1a1a;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    line-height: 1.8;
}

/* 강조 텍스트 (홀로서기, 수익률) 섹션 */
.dotima-style-highlight {
    background-color: #00bcd4; /* 도티마의 파란색/민트색 계열 강조색 */
    color: #121212;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.dotima-style-highlight h3,
.dotima-style-highlight h4 {
    margin: 0 0 10px 0;
    font-weight: 700;
}

.dotima-style-highlight h2 {
    font-size: 2.5rem;
    margin: 20px 0;
}

.dotima-style-highlight .bg_txt span {
    background: #121212; /* 배경색 대비 */
    color: #f0f0f0;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 500;
}

/* 최종 목표 (홀로서기) 강조 */
.dotima-style-goal h4 strong {
    font-size: 2rem;
    color: #ff2a00; /* 빨간색으로 강력하게 강조 */
    display: block;
    margin: 15px 0;
}

/* 이미지 및 사인 */
.dotima-style-text-box .sain {
    margin-top: 30px;
    text-align: right;
}

/* 성공 증명 섹션 (box_con2) - 카드 스타일 */
.dotima-style-proof {
    background-color: #222222;
    padding: 40px;
    border-radius: 10px;
    display: flex; /* Flexbox 레이아웃 적용 */
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.dotima-style-proof .img {
    flex: 1;
    max-width: 300px;
}

.dotima-style-proof .img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dotima-style-proof .tit {
    flex: 2;
}

.dotima-style-proof h2 strong {
    font-size: 2.2rem;
    color: #00bcd4;
}

.dotima-style-proof .btn a {
    display: inline-block;
    background-color: #ff2a00; /* 버튼 강조색 */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.dotima-style-proof .btn a:hover {
    background-color: #d12200;
}

/* 하단 링크 섹션 (box_con3) - 아이콘 그리드 */
.dotima-style-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4개 컬럼 그리드 */
    gap: 20px;
    text-align: center;
}

.dotima-style-links li a {
    display: block;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    color: #f0f0f0;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dotima-style-links li a:hover {
    background-color: #2a2a2a;
}

.dotima-style-links li img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.dotima-style-links li p {
    font-weight: 700;
    margin: 0;
    color: #00bcd4;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .dotima-style-proof {
        flex-direction: column;
        text-align: center;
    }
    .dotima-style-proof .img {
        max-width: 100%;
    }
    .dotima-style-links ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .dotima-style-slogan h2 strong {
        font-size: 2.5rem;
    }
    .dotima-style-highlight h2 {
        font-size: 2rem;
    }
}