/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* Table Layout */
#main-layout {
    margin: 20px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Content Sections */
.content-section {
    padding: 30px 15%;
    background: white;
}

h1 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2.2em;
}

/* Testimonials */
.testimonials {
    background: #e8f4f8;
    padding: 40px 15%;
}

.review {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 15%;
    text-align: center;
}

address {
    margin-bottom: 25px;
    font-style: normal;
}

.sources {
    margin: 30px 0;
}

.sources ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sources a {
    color: #3498db;
    text-decoration: none;
}

.sources a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 25px;
    font-size: 0.9em;
}