/* What We're Looking For Section */
.looking-for-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.looking-for-section .service-block_one-inner {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid #4a90e2;
}

.looking-for-section .service-block_one-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.looking-for-section .service-block_one-icon {
    font-size: 50px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.looking-for-section .service-block_one-heading {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.looking-for-section .service-block_one-text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.looking-for-section .service-block_one-arrow {
    color: #4a90e2;
    font-size: 20px;
    transition: transform 0.3s;
}

.looking-for-section .service-block_one-inner:hover .service-block_one-arrow {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .looking-for-section {
        padding: 60px 0;
    }
    
    .looking-for-section .service-block_one-inner {
        padding: 20px;
    }
}


/* 📌 Presentation Format Styling */
.info-box-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.info-box-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #3498db;
    padding-left: 30px;
}

.info-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-box-icon {
    font-size: 32px;
    margin-right: 15px;
}

.info-box-title {
    font-size: 28px;
    color: #2c3e50;
    margin: 0;
}

.styled-list {
    list-style-type: none;
    padding: 0;
}

.styled-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
    line-height: 1.6;
}

.styled-list li:last-child {
    border-bottom: none;
}

/* ❗ Important Notes Styling */
.alert-box-section {
    padding: 60px 0;
    background-color: #fff8f8;
}

.alert-box-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #e74c3c;
    padding-left: 30px;
}

.alert-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.alert-box-icon {
    font-size: 32px;
    margin-right: 15px;
}

.alert-box-title {
    font-size: 28px;
    color: #c0392b;
    margin: 0;
}

.alert-list {
    list-style-type: none;
    padding: 0;
}

.alert-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ffdddd;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.alert-list li:before {
    content: "•";
    color: #e74c3c;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 12px;
}

@media (max-width: 767px) {
    .info-box-wrapper, .alert-box-wrapper {
        padding-left: 20px;
    }
    
    .info-box-title, .alert-box-title {
        font-size: 24px;
    }
}
