.carpenter-hero-section {
    background: linear-gradient(135deg, #3a3a3a 0%, #101a13 100%);
    min-height: 400px;
    padding: 60px 0;
}

.carpenter-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.carpenter-text-container {
    flex: 1;
    color: white;
}

.carpenter-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carpenter-description-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.carpenter-register-button {
    background-color: white;
    color: #373838;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.carpenter-register-button:hover {
    background-color: #f0f0f0;
    color: #303231;
}

.carpenter-image-container {
    flex: 1;
    max-width: 500px;
}

.carpenter-featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .carpenter-content-wrapper {
        flex-direction: column;
    }
    
    .carpenter-main-heading {
        font-size: 2rem;
    }
    
    .carpenter-description-text {
        font-size: 1rem;
    }
    
    .carpenter-image-container {
        max-width: 100%;
    }
}
