/* Frontend styles for Ashtech Pages Blocks */
.ashtech-page-wrapper {
    width: 100%;
    margin: 0 auto;
}

.ashtech-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.ashtech-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.ashtech-hero p {
    font-size: 1.5em;
    opacity: 0.9;
}

.ashtech-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ashtech-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.ashtech-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.ashtech-image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.ashtech-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Form Messages */
.form-message {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

