    /* 프로젝트 의뢰 페이지 스타일 */
    .project-request-hero {
        background: linear-gradient(135deg, #1e4cae 0%, #4a6ecf 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
        color: white;
    }
    
    .project-request-hero:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTQ0MCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMHYxMDBjMTQ0IDAgNDMyLTQ1IDcyMC00NSAyODggMCA1NzYgNDUgNzIwIDQ1VjB6IiBmaWxsPSIjZmZmZmZmIi8+PC9zdmc+');
        background-size: 100% 100px;
        background-position: bottom;
        background-repeat: no-repeat;
        opacity: 0.3;
    }
    
    .page-section {
        padding: 80px 0;
    }
    
    .section-heading {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }
    
    .section-heading p {
        color: #666;
        font-size: 1.1rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .request-card {
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
        transition: all 0.3s ease;
    }
    
    .request-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .request-header {
        padding: 20px 25px;
        background-color: #f8f9fa;
        border-bottom: 1px solid #eaecef;
    }
    
    .request-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
    }
    
    .request-body {
        padding: 25px;
    }
    
    .request-desc {
        margin-bottom: 20px;
        line-height: 1.7;
        color: #555;
    }
    
    .request-meta {
        display: flex;
        flex-wrap: wrap;
    }
    
    .meta-item {
        margin-right: 25px;
        margin-bottom: 15px;
    }
    
    .meta-label {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 3px;
    }
    
    .meta-value {
        font-weight: 600;
        color: #333;
    }
    
    .request-footer {
        padding: 20px 25px;
        border-top: 1px solid #eaecef;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .request-status {
        padding: 5px 12px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
        display: inline-block;
    }
    
    .status-active {
        background-color: #e6f7ec;
        color: #0d8a2e;
    }
    
    .status-urgent {
        background-color: #fdecec;
        color: #d32f2f;
    }
    
    .status-pending {
        background-color: #fff6e6;
        color: #ec9a3c;
    }
    
    .btn-apply {
        background-color: var(--primary-color);
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 500;
        border: 2px solid var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .btn-apply:hover {
        background-color: transparent;
        color: var(--primary-color);
    }
    
    .search-filters {
        background-color: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .form-switch .form-check-input {
        width: 3em;
        height: 1.5em;
    }
    
    .form-switch .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
    
    .filter-heading {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }
    
    .project-process {
        position: relative;
        margin-top: 80px;
        margin-bottom: 60px;
    }
    
    .process-container {
        position: relative;
    }
    
    .process-container:before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #e9ecef;
        z-index: 1;
    }
    
    .process-step {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 20px 10px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-size: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .step-title {
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }
    
    .step-desc {
        font-size: 0.9rem;
        color: #666;
    }
    
    .cta-section {
        background-color: #f8f9fa;
        padding: 80px 0;
        text-align: center;
    }
    
    .cta-heading {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }
    
    .cta-subheading {
        color: #666;
        font-size: 1.1rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    
    .btn-cta {
        background-color: var(--primary-color);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 500;
        border: 2px solid var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-3px);
    }
    
    /* 히어로 섹션 스타일 */
    .hero-section {
        background: linear-gradient(135deg, #3498db, #1abc9c);
        padding: 80px 0;
    }
    
    /* 카드 스타일 */
    .project-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }
    
    .project-card .card-title {
        font-weight: 700;
        font-size: 1.25rem;
    }
    
    .info-row {
        font-size: 0.9rem;
    }
    
    /* 필터 섹션 스타일 */
    .bg-gradient {
        background: linear-gradient(135deg, #3498db, #1abc9c);
    }
    
    /* 페이지네이션 스타일 */
    .pagination .page-link {
        color: #3498db;
        border-radius: 5px;
        margin: 0 3px;
    }
    
    .pagination .page-item.active .page-link {
        background-color: #3498db;
        border-color: #3498db;
    }
    
    /* 프로세스 섹션 스타일 */
    .process-card {
        border-radius: 10px;
        overflow: hidden;
    }
    
    /* 배지 스타일 */
    .badge {
        padding: 6px 10px;
        font-weight: 500;
        border-radius: 30px;
    }
    
    .projects-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-description {
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto 50px;
        text-align: center;
    }
    
    .project-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s;
        height: 100%;
        border: none;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .project-image {
        height: 200px;
        overflow: hidden;
    }
    
    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .project-card:hover .project-image img {
        transform: scale(1.05);
    }
    
    .default-image {
        background: linear-gradient(135deg, #3498db, #2980b9);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .default-image i {
        font-size: 50px;
        color: white;
    }
    
    .card-title {
        font-weight: 700;
        margin-bottom: 10px;
        color: #2c3e50;
        font-size: 1.2rem;
    }
    
    .project-description {
        color: #7f8c8d;
        font-size: 0.95rem;
        margin-bottom: 15px;
        flex-grow: 1;
    }
    
    .project-category {
        display: inline-block;
        background-color: #f0f4f8;
        color: #3498db;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .project-status {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .status-pending {
        background-color: #ffeaa7;
        color: #d35400;
    }
    
    .status-active {
        background-color: #d0f9e6;
        color: #27ae60;
    }
    
    .status-completed {
        background-color: #e0f5ff;
        color: #2980b9;
    }
    
    .status-other {
        background-color: #f0f0f0;
        color: #7f8c8d;
    }
    
    .project-info {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .info-item {
        display: flex;
        align-items: center;
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    .info-item i {
        margin-right: 5px;
        color: #3498db;
    }
    
    .create-btn {
        background: linear-gradient(to right, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 30px;
        transition: all 0.3s;
    }
    
    .create-btn:hover {
        background: linear-gradient(to right, #2980b9, #3498db);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .pagination-container {
        margin-top: 50px;
        text-align: center;
    }
    
    .pagination .page-link {
        color: #3498db;
        border-radius: 5px;
        margin: 0 3px;
        border-color: #e0e0e0;
    }
    
    .pagination .page-item.active .page-link {
        background-color: #3498db;
        border-color: #3498db;
    }
    
    .no-projects {
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 40px;
        text-align: center;
        margin-top: 30px;
    }
    
    .no-projects i {
        font-size: 50px;
        color: #e0e0e0;
        margin-bottom: 20px;
    }
    
    .no-projects h3 {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }
    
    .no-projects p {
        color: #7f8c8d;
        margin-bottom: 25px;
    }
    
    /* 강조 버튼 스타일 */
    .btn-emphasis {
        border-radius: 50px !important;
        transition: all 0.3s ease !important;
        background: linear-gradient(45deg, #fff, #f8f9fa) !important;
        border: none !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        color: #1e4cae !important;
        font-weight: bold !important;
        transform: translateY(0);
    }

    .btn-emphasis:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
    }

    .btn-emphasis::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,255,255,0));
        transform: rotate(30deg);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%) rotate(30deg);
        }
        100% {
            transform: translateX(100%) rotate(30deg);
        }
    }

    .btn-emphasis-content {
        position: relative !important;
        z-index: 1 !important;
    }

    .btn-emphasis-icon {
        font-size: 1.2rem !important;
        margin-right: 0.5rem !important;
        color: #1e4cae !important;
    }

    /* 프로젝트 진행 방식 카드 스타일 */
    .project-process-section {
        background-color: #f8f9fa;
    }

    .process-card {
        position: relative;
        height: 100%;
        padding: 10px;
    }

    .process-radio {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .process-card-inner {
        display: block;
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        height: 100%;
        position: relative;
    }

    .process-card-inner::before {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 24px;
        height: 24px;
        border: 2px solid #d0d0d0;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .process-radio:checked + .process-card-inner {
        border-color: #3498db;
        background: #f0f8ff;
        box-shadow: 0 5px 20px rgba(52, 152, 219, 0.2);
    }

    .process-radio:checked + .process-card-inner::before {
        border-color: #3498db;
        background: #3498db;
        box-shadow: inset 0 0 0 4px white;
    }

    .process-card-inner:hover {
        border-color: #3498db;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

    .process-icon {
        font-size: 4rem;
        color: #7f8c8d;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .process-radio:checked + .process-card-inner .process-icon {
        color: #3498db;
    }

    .process-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .process-description {
        color: #555;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .process-example {
        color: #7f8c8d;
        font-size: 0.9rem;
        font-style: italic;
    }

    /* 프로젝트 목록 스타일 */
    .project-list-card {
        border-radius: 10px;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .project-list-card:hover {
        border-color: #3498db;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
        transform: translateY(-2px);
    }

    .project-list-card .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2c3e50;
    }

    .project-list-card .project-category {
        font-size: 0.8rem;
    }

    .project-list-card .project-status {
        font-size: 0.8rem;
    }
