        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        header {
            /*background: #333;*/
			background: #336699;
            color: #fff;
            padding: 1rem;
        }
        nav ul {
            list-style: none;
            padding: 0;
        }
        nav ul li {
            display: inline;
            margin-right: 10px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
        }
        main {
            padding: 2rem;
        }
		/* Coming soon styles */
		.coming-soon {
    		color: #999;
    		font-style: italic;
		}
        footer {
            /*background: #333;*/
			background: #336699;
            color: #fff;
            text-align: center;
            /*padding: 1rem;*/
            position: fixed;
            bottom: 0;
            width: 100%;
        }
		#hero {
    		/*background-image: url('hero-background.jpg');*/
    		background-size: cover;
    		background-position: center;
    		height: 500px;
    		display: flex;
    		align-items: center;
    		justify-content: center;
    		text-align: center;
    		color: white;
		}

		.hero-content {
    		/*background-color: rgba(0, 0, 0, 0.6);*/
			background-color: #336699;
    		padding: 2rem;
    		border-radius: 10px;
		}

		.cta-button {
    		display: inline-block;
    		padding: 10px 20px;
    		background-color: #007bff;
    		color: white;
    		text-decoration: none;
    		border-radius: 5px;
    		font-weight: bold;
    		margin-top: 20px;
    		transition: background-color 0.3s ease;
		}

		.cta-button:hover {
    		background-color: #0056b3;
		}		
		
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-card:hover i {
    color: #0056b3;
    transform: scale(1.1);
    transition: all 0.3s ease;
}
		
.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-plan {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
    /*background-color: #007bff;*/
	background-color: #336699;
    color: white;
    transform: scale(1.05);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.pricing-plan ul {
    list-style-type: none;
    padding: 0;
}

.pricing-plan li {
    margin-bottom: 0.5rem;
}

.plan-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    background-color: #218838;
}
		
#contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 150px;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
	margin-bottom: 200px; /* add this line to have space between form and footer */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}
		
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#modal-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#modal-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#modal-form button:hover {
    background-color: #0056b3;
}
.header-content {
    display: flex;
    align-items: center;
}
		/* Responsive design for larger screens */
		@media (min-width: 768px) {
    		.header-content {
        		flex-direction: row;
        		justify-content: center;
				flex-wrap: nowrap;
    		}
			
			.logo-title {
				flex: 0 1 auto;
			}
			
			.address-info {
				flex: 0 0 auto;
			}

    		.header-content img {
        		margin-bottom: 0;
        		margin-right: 2rem;
    		}
		}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .address-info {
        position: static;
        margin-top: 10px;
        text-align: left;
    }
}

        /* Contact section styles */
        #contact {
            background-color: #f4f4f4;
            padding: 2rem;
            text-align: center;
        }

        .contact-button {
            background-color: #4CAF50;
            border: none;
            color: white;
            padding: 15px 32px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .contact-button:hover {
            background-color: #45a049;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 5px;
        }

        .close-button {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        /* Contact options styles */
        .contact-options {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .contact-options button {
            background-color: #008CBA;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .contact-options button:hover {
            background-color: #007B9A;
        }

        /* Form styles */
        form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        form label {
            margin-top: 10px;
        }

        form input[type="text"],
        form input[type="email"],
        form textarea {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        form input[type="submit"] {
            background-color: #4CAF50;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin-top: 20px;
            cursor: pointer;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        form input[type="submit"]:hover {
            background-color: #45a049;
        }