/* I Can Fire - Fallback Styles */

/* Basic fallback styles for older browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Basic button styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #14644b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 44px;
}

.btn:hover {
    background: #1a3464;
}

/* Basic responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Basic form styles */
input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

input:focus, select:focus, textarea:focus {
    border-color: #1a3464;
    outline: none;
}

/* Basic layout */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.bg-primary {
    background-color: #1a3464;
}

.bg-secondary {
    background-color: #1a3464;
}

.text-white {
    color: #fff;
}