/* Base styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
}
.main-nav {
    margin-top: 10px;
}

.logo-title {
   display: flex;
    align-items: center;
}
.logo-title h1 {
    margin: 0;
    font-size: 2.0em; /* Adjust as needed */
}
.logo-title img {
    max-width: 300px;
    height: auto;
	margin-right: 20px;
}

.logo-title h1 {
    margin-top: 10px;
}

.address-info {
    position: absolute;
    top: 75px;
    right: 30px;
    text-align: right;
    font-size: 1em;
}

.address-info p {
    margin: 0;
}

.content-container {
    /*max-width: 1024px;*/
    margin: 0 auto;
    padding: 0 20px;
}

#hero {
   		/*background-image: url('hero-background.jpg');*/
   		background-size: cover;
   		background-position: center;
   		/*height: 500px;*/
		/*height: 200px;*/
   		/*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;
}

/* Header styles */
header {
    background: #336699;
    color: #fff;
    padding: 10px;
    position: relative;
}

		/* 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;
    }
}

/* Navigation styles */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 15px;
}

.main-nav ul li a {
    color: #336699;
    text-decoration: none;
    font-weight: bold;
}

.main-nav ul li a:hover {
    text-decoration: underline;
}

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

/* for msp page */
.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: 175px;
    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;
}


/* Service grid for main page */
.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.service-card {
    flex: 0 1 200px;
    border: 2px solid #336699;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    text-align: center;
    transition: transform 0.3s ease;
    background-color: yellow;
}

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

.service-card h3 {
    font-size: 1rem;
    margin: 0;
}

.service-notice {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}


/* Two-column layout for services page */
.services-page .content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-page .column {
    flex: 1;
    min-width: 300px;
}

/* Section styles */
section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #336699;
    border-bottom: 2px solid #336699;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

section ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

section ul li {
    margin-bottom: 0.5rem;
}

section ul ul {
    padding-left: 20px;
    margin-top: 0.5rem;
}

/* Link styles */
a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Coming soon styles */
.coming-soon {
    color: #999;
    font-style: italic;
}

/* Additional links */
.additional-links {
    margin-top: 2rem;
    text-align: center;
}

.prevent-spam-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #336699;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.prevent-spam-link:hover {
    background-color: #254e77;
    text-decoration: none;
}

/* Footer styles */
footer {
    background: #336699;
    color: #fff;
    text-align: center;
    /*padding: 1rem;*/
    margin-top: auto;
}

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

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

    .services-page .content-container {
        flex-direction: column;
    }

    .column {
        width: 100%;
    }

    .service-grid {
        justify-content: flex-start;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

/* Breadcrumb styles */
.breadcrumb {
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline;
    font-size: 14px;
}

.breadcrumb li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.breadcrumb li:last-child {
    color: #666;
}

.breadcrumb a {
    color: #0275d8;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.form-group button[type="submit"]:hover {
    background-color: #0056b3;
}

.success-message,
.error-message {
    display: none;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}