/* Main container styles */
.newbuildings-container {
    font-family: 'Open Sans', Arial, sans-serif;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Banner styles */
.newbuildings-banner {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.newbuildings-banner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 0 0 0 100%;
}

/* Typography styles */
.newbuildings-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
}

.newbuildings-lead {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

/* Features list styles */
.newbuildings-features {
    margin: 25px 0;
}

.features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-item {
    padding: 12px 15px 12px 40px;
    position: relative;
    background-color: #f8fafc;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    font-weight: bold;
}

/* Call to action styles */
.newbuildings-cta {
    font-size: 16px;
    line-height: 1.6;
    margin: 25px 0;
    padding: 15px;
    background-color: #f0f7ff;
    border-left: 4px solid #3498db;
    border-radius: 0 4px 4px 0;
}

/* Footer styles */
.newbuildings-footer {
    font-size: 14px;
    color: #4a5568;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.highlight-phone {
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    .newbuildings-title {
        font-size: 28px;
    }
    
    .features-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .newbuildings-title {
        font-size: 30px;
    }
}