@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
        
.service-instructions-content {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

.service-instructions-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-instructions-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.service-instructions-content .hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #0d3b1c 0%, #0a0a0a 70%);
}

.service-instructions-content .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a8b47' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.service-instructions-content .hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.service-instructions-content .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-instructions-content .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-instructions-content .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #1a8b47 0%, #4ade80 100%);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(26, 139, 71, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-instructions-content .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 139, 71, 0.5);
}

.service-instructions-content .services {
    padding: 5rem 0;
    position: relative;
}

.service-instructions-content .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-instructions-content .section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-instructions-content .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1a8b47, #4ade80);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-instructions-content .section-title p {
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.service-instructions-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 2fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-instructions-content .service-card {
    background: linear-gradient(145deg, rgba(26, 139, 71, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-instructions-content .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1a8b47, #4ade80);
}

.service-instructions-content .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-instructions-content .service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-instructions-content .card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-instructions-content .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d3b1c 0%, #1a8b47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(26, 139, 71, 0.3);
    transition: all 0.3s ease;
}

.service-instructions-content .card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-instructions-content .card-title {
    flex: 1;
}

.service-instructions-content .card-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.service-instructions-content .card-body {
    padding: 0 2rem 2rem;
    flex: 1;
}

.service-instructions-content .card-body p {
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.service-instructions-content .steps {
    list-style: none;
    counter-reset: step-counter;
}

.service-instructions-content .steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    counter-increment: step-counter;
}

.service-instructions-content .steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1a8b47 0%, #4ade80 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(26, 139, 71, 0.3);
}

.service-instructions-content .note {
    background: rgba(74, 222, 128, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    position: relative;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.service-instructions-content .note::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.service-instructions-content .highlight a {
    color: #4ade80;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.service-instructions-content .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    background-color: rgba(74, 222, 128, 0.1);
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 2px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.service-instructions-content .floating {
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 992px) {
    .service-instructions-content .hero h1 {
        font-size: 2.8rem;
    }
    
    .service-instructions-content .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-instructions-content .hero {
        height: 50vh;
    }
    
    .service-instructions-content .hero h1 {
        font-size: 2.2rem;
    }
    
    .service-instructions-content .hero p {
        font-size: 1rem;
    }
    
    .service-instructions-content .section-title h2 {
        font-size: 2rem;
    }
    
    .service-instructions-content .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-instructions-content .card-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .service-instructions-content .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-instructions-content .services-grid {
        grid-template-columns: 1fr;
    }
}