/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body {
    font-family: var(--font-primary);
    font-weight: normal;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container Styles */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Base Styles */
section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Paragraph Styles */
p {
    font-family: var(--font-primary);
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile First Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    p {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    section {
        padding: 1.5rem 0;
    }

    p {
        font-size: 0.85rem;
    }
}

/* Contact Form Feedback Styles */
.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-feedback.success,
.form-feedback.error {
    opacity: 1;
    transform: translateY(0);
}

.form-feedback.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.form-feedback.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Submit Button States */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
} 