/* General Page Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1, h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.info-table th, .info-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.info-table th {
    background-color: #0078be;
    color: white;
    font-weight: bold;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.info-table tr:hover {
    background-color: #f1f1f1;
}

/* Links inside table */
.info-table a {
    color: #1E88E5;
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}

/* Section Styling */
section {
    margin-bottom: 40px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.hero .cta {
    color: white;
    background-color: #ff6f61;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero .cta:hover {
    background-color: #e05a4f;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 40px 0;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    width: 23%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: #FF6F61;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #333;
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
}

.gallery h2 {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Enquiry Form Section */
.enquiry-form {
    background-color: #fff;
    padding: 40px 0;
}

.enquiry-form h2 {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.enquiry-form form {
    width: 50%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    display: block;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

button.cta {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

button.cta:hover {
    background-color: #e05a4f;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #1E88E5;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
