/* SSC Website Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #fff;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px 0 18px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.logo {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
nav a {
    color: #333;
    text-decoration: none;
    margin-left: 24px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: color 0.2s;
}
nav a:hover {
    color: #7a6c5d;
}
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 32px 16px;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 32px;
    gap: 32px;
}
.hero-text {
    flex: 1 1 350px;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0 0 18px 0;
    line-height: 1.1;
}
.hero-desc {
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 0;
}
.hero-img {
    flex: 1 1 350px;
    min-width: 300px;
    display: flex;
    justify-content: center;
}
.hero-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    object-fit: cover;
}
.what-we-do {
    margin-top: 48px;
}
.what-we-do h2 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.what-we-do p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.feature {
    flex: 1 1 220px;
    background: #faf8f6;
    border-radius: 8px;
    padding: 18px 16px 16px 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.feature .icon {
    width: 32px;
    height: 32px;
    background: url('icon-arc.svg') no-repeat center center/contain;
    margin-bottom: 10px;
}
.feature h3 {
    font-size: 1.1rem;
    margin: 0 0 6px 0;
}
.feature p {
    font-size: 0.98rem;
    margin: 0;
}
hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 48px 0 32px 0;
}
.next-step {
    text-align: center;
    margin-top: 32px;
}
.next-step h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.next-step p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.next-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.action-img {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 260px;
}
.action-img img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.actions {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.action {
    flex: 1 1 220px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px 12px 14px 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    min-width: 200px;
    max-width: 320px;
}
.action h3 {
    font-size: 1.08rem;
    margin: 0 0 6px 0;
}
.action p {
    font-size: 0.97rem;
    margin: 0;
}
footer {
    background: #2d2a27;
    color: #fff;
    padding: 0;
    margin-top: 32px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px 0 18px;
    flex-wrap: wrap;
}
.footer-logo {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
footer nav a {
    color: #fff;
    margin-left: 18px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    opacity: 0.85;
}
footer nav a:hover {
    color: #e0cfa7;
}
.footer-contact {
    font-size: 0.98rem;
    opacity: 0.85;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.93rem;
    padding: 10px 32px 10px 18px;
    background: #26231f;
    opacity: 0.95;
}
@media (max-width: 900px) {
    .hero, .features, .actions, .next-actions, .footer-main {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-main, .footer-bottom {
        padding: 18px 10px 0 10px;
    }
    main {
        padding: 0 4px 32px 4px;
    }
}
