body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #181511 url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    color: #3a2a1a;
    min-height: 100vh;
} 

header.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 2.5em;
}
.hero-logo-container {
    z-index: 3;
    margin-bottom: 1.2em;
    margin-top: 0.5em;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}
.hero-logo {
    width: 140px;
    max-width: 95vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(160,82,45,0.17));
    background: none;
    border-radius: 0;
    padding: 0;
    box-sizing: content-box;
    z-index: 3;
}
@media (max-width: 600px) {
    .hero-logo {
        width: 90px;
    }
}
header.hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(160,82,45,0.35) 0%, rgba(34,24,10,0.65) 100%);
    z-index: 1;
} 

header.hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: 0.04em;
    color: #fff5e6;
    margin-bottom: 0.7em;
    font-weight: 800;
    text-shadow: 0 4px 24px rgba(100,60,20,0.30);
    font-family: 'Montserrat', Arial, sans-serif;
}
.hero-content .hero-welcome {
    color: #ffe2ba;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2em;
    text-shadow: 0 2px 10px rgba(110,60,20,0.18);
    background: rgba(160,82,45,0.18);
    border-radius: 1em;
    padding: 1.1em 2em 1em 2em;
    display: inline-block;
}
.hero-content .hero-desc {
    color: #fff;
    background: rgba(34, 24, 10, 0.45);
    border-radius: 0.7em;
    padding: 1.2em 2em;
    font-size: 1.08rem;
    margin-top: 0.5em;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-content p {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: rgba(34, 24, 10, 0.55);
    border-radius: 0.5em;
    padding: 1.2em 2em;
    line-height: 1.7;
}

.hero-content p {
    color: #d2b48c;
    font-size: 1.5rem;
    font-weight: 400;
}

nav {
    background: #1a120b;
    padding: 1em 0;
    text-align: center;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 2em;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.2s;
}
nav a:hover {
    color: #a0522d;
}

main {
    max-width: 1100px;
    margin: 2.5em auto 0 auto;
    padding: 0 1.5em;
}

section {
    margin-bottom: 3em;
    background: #fff7ed;
    border-radius: 1.3em;
    padding: 2.5em 3em;
    box-shadow: 0 4px 28px rgba(160,82,45,0.10);
    color: #3a2a1a;
    border: 1px solid #f7e7d3;
}
.about-section {
    background: #ffe9cc;
    color: #3a2a1a;
}

.projects-section {
    background: #fff7ed;
    color: #3a2a1a;
    border-radius: 1.3em;
    box-shadow: 0 4px 28px rgba(160,82,45,0.10);
    border: 1px solid #f7e7d3;
    margin-bottom: 3em;
    padding: 2.5em 2em;
}
.projects-section h2 {
    font-size: 2.2em;
    color: #a0522d;
    margin-bottom: 1.8em;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
}
.project-category {
    background: #fff;
    border-radius: 1.1em;
    box-shadow: 0 2px 12px rgba(160,82,45,0.07);
    padding: 1.5em 1.2em 1.2em 1.2em;
    border: 1px solid #f7e7d3;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5em;
    min-width: 0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.project-category:hover {
    box-shadow: 0 6px 24px rgba(160,82,45,0.13);
    transform: translateY(-3px) scale(1.01);
}
.project-category h3 {
    color: #a0522d;
    font-size: 1.18em;
    margin-bottom: 0.8em;
    margin-top: 1.2em;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.project-category h3:first-child {
    margin-top: 0;
}
.project-category ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2em 0;
    font-size: 1em;
}
.project-category ul li {
    margin-bottom: 0.4em;
    padding-left: 1.1em;
    position: relative;
    color: #4d3a24;
    font-weight: 500;
    line-height: 1.5;
}
.project-category ul li:before {
    content: '\2022';
    color: #a0522d;
    position: absolute;
    left: 0;
    font-size: 1.1em;
    top: 0;
}
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.2em;
    }
    .projects-section {
        padding: 1.2em 0.7em;
    }
}

.about-section {
    background: #1a120b;
    color: #fff;
}

.info-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2em;
    border-radius: 1.2em;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(160,82,45,0.22);
    background: #ffe9cc;
    border: 2px solid #f7e7d3;
}
.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2em;
    transition: transform 0.3s;
}
.info-image img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 6px 24px rgba(160,82,45,0.25);
}

.info-section h3 {
    margin-top: 0;
    color: #a0522d;
    font-size: 1.35em;
    margin-bottom: 0.6em;
}
.info-section p {
    margin: 0;
    line-height: 1.7;
    color: #eee;
}

h2 {
    color: #a0522d;
    font-size: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2em;
    padding: 0;
    list-style: none;
}
.services-list li {
    background: #2d1b0e;
    color: #fff;
    padding: 1em;
    border-radius: 0.7em;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2em;
}
.gallery-item {
    background: linear-gradient(135deg, #a0522d 0%, #fff 100%);
    height: 140px;
    border-radius: 0.7em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    opacity: 0.8;
}

.team-section {
    background: #181818;
    color: #fff;
    border-radius: 1.3em;
    margin-bottom: 2.5em;
    padding: 2.5em 2.5em 2em 2.5em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.11);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1.5px solid #282828;
}

.team-section h2 {
    text-align: center;
    margin: 0 auto 1.1em auto;
    width: 100%;
    font-weight: 800;
    letter-spacing: 1.3px;
    position: relative;
    padding-bottom: 0.3em;
    font-size: 2.1em;
    color: #ffb96a;
}
.team-section h2::after {
    content: '';
    display: block;
    margin: 0.7em auto 0 auto;
    width: 100px;
    max-width: 60vw;
    border-bottom: 3px solid #ffb96a;
    opacity: 1;
    border-radius: 2px;
}

.team-columns {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: flex-start;
    justify-content: center;
    margin: 2em 0 2.5em 0;
    width: 100%;
    flex-wrap: wrap;
}

.team-card {
    background: #232323;
    color: #fff;
    border-radius: 1.1em;
    box-shadow: 0 4px 22px rgba(160,82,45,0.13);
    padding: 1.8em 2.2em 1.6em 2.2em;
    min-width: 210px;
    max-width: 260px;
    text-align: left;
    font-size: 1.13em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
    border: 1.5px solid #353535;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    margin: 0;
    position: relative;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(255,185,106,0.18);
    transform: translateY(-6px) scale(1.035);
    border-color: #ffb96a;
}
.team-card > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin: 0.5em 0 0.1em 0;
}
.team-card > div strong {
    font-size: 1.15em;
    color: #ffb96a;
    font-weight: 700;
    margin-bottom: 0.2em;
    letter-spacing: 0.03em;
}
.team-card a {
    color: #ffb96a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
}
.team-card a:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 700px) {
  .team-section {
    padding: 1.2em 0.4em;
    max-width: 98vw;
  }
  .team-columns {
    flex-direction: column;
    gap: 1.1em;
    align-items: center;
    margin: 1em 0 1.5em 0;
  }
  .team-card {
    min-width: 0;
    max-width: 98vw;
    padding: 1.2em 1em 1.1em 1em;
    font-size: 1em;
  }
}

/* === PARTNERS SECTION FINAL OVERRIDES === */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #181818;
    border-radius: 1.3em;
    box-shadow: 0 4px 22px rgba(255,185,106,0.10);
    padding: 2em 1.2em 1.7em 1.2em;
    margin: 0 0.5em;
    border: 1.5px solid #282828;
    min-width: 220px;
    max-width: 260px;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
}
.partner-card:hover {
    box-shadow: 0 8px 32px rgba(255,185,106,0.18);
    border-color: #ffb96a;
    transform: translateY(-6px) scale(1.035);
}
.partner-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #111;
    border: 3px solid #ffb96a;
    box-shadow: 0 2px 16px rgba(255,185,106,0.13);
    margin-bottom: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4em;
}
.partner-info strong {
    font-size: 1.18em;
    color: #ffb96a;
    font-weight: 700;
    margin-bottom: 0.2em;
    letter-spacing: 0.03em;
}
.partner-info a {
    color: #ffb96a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
    font-size: 1em;
}
.partner-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.team-section {
    background: #181818;
    color: #fff;
    border-radius: 1.3em;
    margin-bottom: 2.5em;
    padding: 2.5em 2.5em 2em 2.5em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.11);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border: 1.5px solid #282828;
}
.team-section h2 {
    text-align: center;
    margin: 0 auto 1.1em auto;
    width: 100%;
    font-weight: 800;
    letter-spacing: 1.3px;
    position: relative;
    padding-bottom: 0.3em;
    font-size: 2.1em;
    color: #ffb96a;
}
.team-section h2::after {
    content: '';
    display: block;
    margin: 0.7em auto 0 auto;
    width: 100px;
    max-width: 60vw;
    border-bottom: 3px solid #ffb96a;
    opacity: 1;
    border-radius: 2px;
}
.team-columns {
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: flex-start;
    justify-content: center;
    margin: 2em 0 2.5em 0;
    width: 100%;
    flex-wrap: wrap;
}
.team-card {
    background: #232323;
    color: #fff;
    border-radius: 1.1em;
    box-shadow: 0 4px 22px rgba(160,82,45,0.13);
    padding: 1.8em 2.2em 1.6em 2.2em;
    min-width: 210px;
    max-width: 260px;
    text-align: left;
    font-size: 1.13em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6em;
    border: 1.5px solid #353535;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    margin: 0;
    position: relative;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(255,185,106,0.18);
    transform: translateY(-6px) scale(1.035);
    border-color: #ffb96a;
}
.team-card > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin: 0.5em 0 0.1em 0;
}
.team-card > div strong {
    font-size: 1.15em;
    color: #ffb96a;
    font-weight: 700;
    margin-bottom: 0.2em;
    letter-spacing: 0.03em;
}
.team-card a {
    color: #ffb96a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    word-break: break-all;
}
.team-card a:hover {
    color: #fff;
    text-decoration: underline;
}

.team-section h2 {
    text-align: center;
    margin: 0 auto 0.7em auto;
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.3em;
}
.team-section h2::after {
    content: '';
    display: block;
    margin: 0.7em auto 0 auto;
    width: 120px;
    max-width: 60vw;
    border-bottom: 3px solid #ffb96a;
    opacity: 1;
    border-radius: 2px;
}

.team-columns {
    display: flex;
    flex-direction: row;
    gap: 0.8em;
    align-items: flex-start;
    margin: 2em 0 2.5em 0;
    width: auto;
    position: static;
    justify-content: flex-start;
}
.team-columns .team-card {
    margin: 0;
}
.team-columns .team-card {
    margin: 0;
}
.team-columns-left {
    justify-content: flex-start;
    display: flex;
}

@media (max-width: 700px) {
  .team-columns {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    justify-content: center;
    margin-bottom: 2em;
}
.team-card {
    background: #fff7ed;
    color: #3a2a1a;
    border-radius: 1.3em;
    box-shadow: 0 4px 24px rgba(160,82,45,0.10);
    padding: 1.7em 2em;
    min-width: 220px;
    max-width: 270px;
    text-align: center;
    font-size: 1.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7em;
    border: 1px solid #f7e7d3;
    transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(160,82,45,0.16);
    transform: translateY(-4px) scale(1.03);
} 
.team-card a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}


.team-card > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin: 0.5em 0;
}
.team-card > div:has(> :contains('Johan van der Walt')) {
    align-items: flex-start !important;
    text-align: left !important;
}
.team-card:hover {
    box-shadow: 0 8px 32px rgba(160,82,45,0.16);
    transform: translateY(-4px) scale(1.03);
} 
.team-card a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}
.team-icon {
    display: block;
    margin: 0 auto 0.5em auto;
    width: 2em;
    height: 2em;

    width: 40px;
    height: 40px;
    margin-bottom: 0.5em;
}
.team-section h2 {
    color: #a0522d;
    margin-bottom: 1.2em;
    margin-top: 0.5em;
    font-size: 1.5em;
    letter-spacing: 0.05em;
}

.contact-section {
    background: #fff7ed;
    color: #3a2a1a;
    border-radius: 1.3em;
    margin-bottom: 2.5em;
    padding: 2.5em 2em 2em 2em;
    box-shadow: 0 4px 28px rgba(160,82,45,0.10);
    border: 1px solid #f7e7d3;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.contact-section h2 {
    color: #a0522d;
    margin-bottom: 1.7em;
    text-align: center;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5em;
}
.contact-info {
    flex: 2;
    min-width: 320px;
}
.contact-map {
    flex: 1.5;
    min-width: 320px;
    max-width: 480px;
    margin-top: 0;
    border-radius: 1.3em;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(160,82,45,0.13);
    border: 2px solid #a0522d;
    background: linear-gradient(135deg, #fff7ed 60%, #ffe9cc 100%);
    height: 340px;
    align-self: stretch;
    transition: box-shadow 0.3s, border 0.3s;
    display: flex;
    align-items: stretch;
}
.contact-map:hover {
    box-shadow: 0 8px 32px rgba(160,82,45,0.18);
    border-color: #f7e7d3;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.3em;
    box-shadow: none;
    display: block;
}
@media (max-width: 700px) {
  .contact-map {
    min-width: 0;
    max-width: 100%;
    height: 220px;
    margin-top: 1.2em;
    border-radius: 1em;
  }
  .contact-map iframe {
    border-radius: 1em;
  }
}
.contact-row {
    display: flex;
    gap: 2em;
    margin-bottom: 1.4em;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid #f7e7d3;
    padding-bottom: 2em;
    margin-bottom: 2em;
}
.contact-block {
    flex: 1;
    background: #fff;
    border-radius: 1.1em;
    padding: 1.5em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(160,82,45,0.07);
    border: 1px solid #f7e7d3;
    min-width: 260px;
    max-width: 340px;
    margin-bottom: 1em;
}
.contact-label {
    font-size: 1.1em;
    font-weight: 700;
    color: #a0522d;
    margin-bottom: 0.7em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-phone {
    font-size: 1.4em;
    color: #fff;
    margin-top: 0.7em;
}
.contact-details {
    display: flex;
    gap: 2em;
    margin-top: 1.5em;
    flex-wrap: wrap;
}
.contact-details {
    display: flex;
    gap: 1.2em;
    margin-top: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-details > div {
    background: #fff;
    border-radius: 0.9em;
    padding: 1.2em 1.2em;
    color: #3a2a1a;
    display: flex;
    align-items: flex-start;
    gap: 0.9em;
    box-shadow: 0 2px 10px rgba(160,82,45,0.08);
    min-width: 220px;
    max-width: 260px;
    border: 1px solid #f7e7d3;
    margin-bottom: 0.7em;
    flex: 1 1 220px;
    justify-content: flex-start;
}
.contact-detail-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    text-align: left;
    font-size: 1em;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .contact-details {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-details > div {
        max-width: 100%;
        min-width: 0;
    }
}

.contact-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.7em;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
}
.contact-form input,
.contact-form textarea {
    padding: 1em;
    border: 1px solid #e4d2be;
    border-radius: 0.7em;
    background: #fff7ed;
    color: #3a2a1a;
    font-size: 1em;
    font-family: inherit;
    resize: none;
    margin-bottom: 0.7em;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 6px rgba(160,82,45,0.06);
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.5px solid #a0522d;
    outline: none;
    box-shadow: 0 2px 12px rgba(160,82,45,0.13);
}
.contact-form button {
    background: linear-gradient(90deg, #a0522d 0%, #f7e7d3 100%);
    color: #3a2a1a;
    border: none;
    border-radius: 0.7em;
    padding: 1em 2em;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.5em;
    box-shadow: 0 2px 10px rgba(160,82,45,0.08);
}
.contact-form button:hover {
    background: linear-gradient(90deg, #f7e7d3 0%, #a0522d 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(160,82,45,0.13);
} 

.section-divider {
    width: 100%;
    height: 48px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.92,22,103.78,29.05,158,17.39C230.29,51,284.15,11.19,339,3.6c54.21-7.45,104.39,16.89,158,29.5C563.7,44.53,623.53,38.36,678,24.43c49.66-12.62,93.81-35.43,146-37.49C883.53-15.07,936.36,9.94,987,26.6c52.49,17.17,104.74,22.67,157,10.28V0Z" opacity=".25" fill="%23a0522d"></path><path d="M0,0V15.81C47.42,22.78,103.27,30.42,158,28.36c54.78-2.08,108.13-17.81,162-19.23C374.54,7.71,428.38,27.52,482,37.7c54.22,10.3,108.09,8.89,162,1.08,53.41-7.76,107.15-20.55,161-24.15,53.73-3.57,107.48,3.36,161,17.36,53.2,14,107.48,35.37,161,38.86,53.33,3.5,107.42-11.47,161-27.61V0Z" opacity=".5" fill="%23a0522d"></path><path d="M0,0V5.63C47.42,19.58,103.27,36.42,158,37.36c54.78,1.08,108.13-13.81,162-15.23C374.54,20.71,428.38,27.52,482,31.7c54.22,4.3,108.09,4.89,162,1.08,53.41-3.76,107.15-12.55,161-16.15,53.73-3.57,107.48,3.36,161,17.36,53.2,14,107.48,35.37,161,38.86,53.33,3.5,107.42-11.47,161-27.61V0Z" fill="%23fff7ed"></path></svg>') repeat-x;
    background-size: cover;
    margin-bottom: 2em;
}
.contactus-section {
    background: #fff7ed;
    color: #3a2a1a;
    border-radius: 1.3em;
    box-shadow: 0 4px 28px rgba(160,82,45,0.10);
    border: 1px solid #f7e7d3;
    margin: 3em auto 2em auto;
    padding: 2.5em 2em;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
}
.contactus-section h2 {
    color: #a0522d;
    margin-bottom: 1.5em;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
}
.contactus-cards {
    display: flex;
    gap: 2em;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.contactus-card {
    background: #fff;
    border-radius: 1.1em;
    box-shadow: 0 2px 12px rgba(160,82,45,0.07);
    border: 1px solid #f7e7d3;
    padding: 1.5em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 210px;
    max-width: 260px;
    flex: 1 1 210px;
    text-align: center;
    gap: 0.7em;
}
.contactus-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5em;
    color: #a0522d;
    opacity: 0.8;
}
.contactus-label {
    font-size: 1.1em;
    font-weight: 700;
    color: #a0522d;
    margin-bottom: 0.3em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.contactus-value a {
    color: #3a2a1a;
    text-decoration: none;
    font-size: 1.18em;
    font-weight: 600;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .contactus-cards {
        flex-direction: column;
        gap: 1.2em;
        align-items: center;
    }
    .contactus-section {
        padding: 1.2em 0.7em;
    }
    .contactus-card {
        max-width: 100%;
        min-width: 0;
    }
}

footer {
    background: #a0522d;
    color: #fff7ed;
    text-align: center;
    padding: 1.2em 0;
    margin-top: 2em;
    font-size: 1em;
    letter-spacing: 0.05em;
    border-radius: 1em 1em 0 0;
    box-shadow: 0 -2px 18px rgba(160,82,45,0.08);
}

@media (max-width: 900px) {
    .info-section, .contact-content {
        flex-direction: column;
        gap: 1.2em;
    }
    .team-grid {
        flex-direction: column;
        gap: 1.2em;
    }
    .contact-row {
        flex-direction: column;
        gap: 1.2em;
        padding-bottom: 1.2em;
        margin-bottom: 1.2em;
    }
    section, .contact-section {
        padding: 1.2em 0.7em;
    }
    .contact-block, .contact-details > div, .contact-map {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1em;
        padding: 1em 0.5em;
    }
    main {
        padding: 0 0.5em;
    }
    .info-section {
        padding: 1em 0.4em;
    }
}

