/* Public-facing page styles */

.public-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.public-page main {
    flex: 1;
}

/* Homepage specific styles */
.about-section {
    background: #f8f9fa;
}

.contact-section {
    background: #f8f9fa;
}

.features-section {
    background: #ffffff;
}

/* Feature cards */
.features-section .card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.features-section .card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15);
}

/* Contact form styling */
.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* About page styling */
.about-section h2 {
    color: var(--color-primary);
}

/* Social icons */
.social-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--color-primary);
}
