.domain-enables-section {
    padding: 80px 0;
    min-height: 500px;
}

.domain-enables-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Default layout: content left, image right */
.domain-enables-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 400px;
}

.content-wrapper {
    flex: 2;
    max-width: 600px;
}

.image-wrapper {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}

.placeholder-image p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.heading {
    margin-bottom: 24px;
}

.heading h1,
.heading h2,
.heading h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #333;
}

.heading .highlight,
.heading span[style*="color"] {
    color: #00BCD4 !important;
}

.subheading {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.point-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.point-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.point-icon.default-icon .checkmark {
    width: 24px;
    height: 24px;
    background: #00BCD4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Default checkmark icon when no icon is provided */
.feature-point:not(:has(.point-icon)) .point-text::before {
    content: "✓";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 16px;
    background: #00BCD4;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.point-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-enables-section {
        padding: 60px 0;
    }
    
    .domain-enables-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .heading h1,
    .heading h2,
    .heading h3 {
        font-size: 36px;
    }
    
    .subheading {
        font-size: 14px;
    }
    
    .feature-point {
        padding: 12px 16px;
    }
    
    .point-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .domain-enables-section {
        padding: 40px 0;
    }
    
    .domain-enables-content {
        gap: 30px;
    }
    
    .heading h1,
    .heading h2,
    .heading h3 {
        font-size: 28px;
    }
    
    .feature-points {
        gap: 12px;
    }
    
    .feature-point {
        padding: 10px 14px;
        gap: 12px;
    }
    
    .point-icon {
        width: 20px;
        height: 20px;
    }
}