/* Basic Reset & Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header */
.header {
    background-color: #e67e22; /* Fox orange */
    color: #fff;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header .logo {
    width: auto;
    height: 200px;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.8em;
}

.header .tagline {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #c0392b; /* Darker red/orange */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #e74c3c;
}

.secondary-btn {
    background-color: #34495e; /* Dark blue/grey */
}

.secondary-btn:hover {
    background-color: #2c3e50;
}

/* Features Section */
.features {
    padding: 50px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.2em;
    color: #e67e22;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item h3 {
    color: #e67e22;
    margin-top: 0;
    font-size: 1.5em;
}

/* Call to Action (CTA) */
.cta {
    background-color: #3498db; /* Blue */
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #2c3e50; /* Darker grey */
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    .features h2, .cta h2 {
        font-size: 1.8em;
    }
    .feature-grid {
        grid-template-columns: 1fr; /* Stack columns on small screens */
    }
}