/* General Layout */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

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

/* Logo Styling - Forces it to be small */
.logo {
    max-width: 150px;
    height: auto;
    margin-top: 30px;
}

/* THE GRID - This makes the tiles align properly */
.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

/* THE CARDS - Individual tiles */
.card {
    background: white;
    width: 300px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* This stops images from stretching */
    border-radius: 8px;
}

h3 {
    margin: 15px 0 10px;
    color: #333;
}

p {
    color: #666;
    font-size: 0.95rem;
}

/* Form Styles */
#quote-form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 12px;
}

input, textarea, select, button {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

button {
    background: #333;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

button:hover {
    background: #555;
}

.social-links a {
    display: inline-block;
    margin-top: 10px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}
