/* Service Sections */
.service-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.08);
}

.service-section h2 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FF6600 0%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.4);
}

.service-section h3 {
    color: #FF6600;
    margin-top: 32px;
    margin-bottom: 18px;
    font-size: 1.5em;
    font-weight: 600;
    text-shadow: 0 1px 12px rgba(255, 102, 0, 0.2);
}

.service-section p {
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 300;
}

.image-container {
    width: 80%;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-image {
    width: 100%;
    margin: 15px 0;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.full-width-image {
    width: 100%;
    margin: 40px 0;
}


/* Downloadables */
.resource-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.resource-btn {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 32px 28px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.resource-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 102, 0, 0.6) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: #FF6600;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 48px rgba(255, 102, 0, 0.15);
}

.resource-btn:hover::before {
    opacity: 1;
}

.resource-btn .icon {
    font-size: 2.8em;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-btn .icon img {
    width: 40%;
    height: 40%;
    display: block;
}

.resource-btn:hover .icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.resource-btn .title {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FF6600;
}

.resource-btn .desc {
    font-size: 0.9em;
    color: #999;
    line-height: 1.5;
}
