/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    color: #333;
    background: url('../images/gradient_grey.jpg') repeat-x left top;
    min-height: 100vh;
    font-size: 12px;
}

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

/* Header styles */
header {
    background-color: transparent;
    width: 100%;
    padding: 20px;
}

.header-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-image {
    max-width: 100%;
    height: auto;
}

/* Main content layout */
.main-content {
    width: 800px;
    margin: 0 auto;
    display: flex;
    background-color: #f4f1e4;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Navigation */
.main-nav {
    width: 120px;
    background-color: #f4f1e4;
    padding: 15px;
    flex-shrink: 0;
    border-right: 1px solid #ccc;
}

.main-nav h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.main-nav ul {
    list-style: none;
}

.main-nav li {
    margin-bottom: 8px;
}

.main-nav a {
    color: #800000;
    text-decoration: none;
    font-size: 11px;
    display: block;
    padding: 2px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #b30000;
    text-decoration: underline;
}

/* Main content area */
main {
    width: 560px;
    padding: 15px;
    background-color: #f4f1e4;
    font-size: 12px;
    flex-shrink: 0;
}

/* Right sidebar */
.rightside {
    width: 120px;
    padding: 15px;
    background-color: #f4f1e4;
    flex-shrink: 0;
    border-left: 1px solid #ccc;
}

.rightside table {
    width: 100%;
}

.contentpaneopen td {
    color: #333;
    font-size: 11px;
    line-height: 1.4;
}

.contentpaneopen b {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
}

#right_outer {
    margin: 0;
    padding: 0;
}

#right_inner {
    padding: 5px;
}

.moduletable {
    width: 100%;
    margin-bottom: 15px;
}

.contentpaneopen {
    width: 100%;
}

.article_seperator {
    display: block;
    height: 15px;
}

/* Content sections */
.content-section {
    margin-bottom: 20px;
}

.content-section h1 {
    color: #800000;
    margin-bottom: 12px;
    font-size: 14px;
}

.content-section h2 {
    color: #800000;
    margin-bottom: 8px;
    font-size: 12px;
}

.content-section p {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 11px;
}

/* Services list */
.services-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.services-list li {
    margin-bottom: 5px;
    font-size: 0.9em;
}

/* Contact form */
.contact-form {
    background-color: #f4f1e4;
    padding: 15px;
    border: 1px solid #ccc;
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    font-size: 0.9em;
}

.submit-button {
    background-color: #800000;
    color: #fff;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
}

.submit-button:hover {
    background-color: #b30000;
}

/* Contact info */
.contact-info {
    background-color: #f4f1e4;
    padding: 15px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    color: #666;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 820px) {
    .main-content {
        width: 95%;
        flex-direction: column;
    }

    .main-nav, .rightside {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ccc;
    }

    main {
        width: 100%;
    }
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/gradient_grey.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Services preview */
.services-preview {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

/* Why Choose Us section */
.why-choose-us {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/gradient_grey.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.service-item {
    margin-bottom: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-item h2 {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    margin: 0;
    text-align: center;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.service-text {
    padding-right: 20px;
}

.service-text ul {
    list-style: none;
    margin: 20px 0;
}

.service-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-text ul li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a1a;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffed4a;
}

/* About Content */
.about-content {
    padding: 60px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-member h3 {
    color: #1a1a1a;
    margin: 15px;
    font-size: 1.4em;
}

.team-member .title {
    color: #ffd700;
    margin: 0 15px;
    font-weight: bold;
}

.team-member .bio {
    margin: 15px;
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 60px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #1a1a1a;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    color: #666;
} 