:root {
    --tcp-green: #0f3d2e;
    --tcp-green-dark: #06281d;
    --tcp-orange: #d96b27;
    --tcp-cream: #f8f1e5;
}

body {
    background: var(--tcp-cream);
    color: var(--tcp-green);
}

.tcp-navbar {
    background: var(--tcp-green-dark);
}

.tcp-hero {
    min-height: calc(100vh - 130px);
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, rgba(217,107,39,0.28), transparent 35%),
        linear-gradient(135deg, #0f3d2e, #06281d);
    color: white;
}

.tcp-logo {
    max-width: 150px;
    background: white;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.tcp-card {
    display: block;
    height: 100%;
    padding: 32px 24px;
    background: #fffaf2;
    color: var(--tcp-green);
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    transition: 0.2s ease;
    border-top: 7px solid var(--tcp-orange);
}

.tcp-card:hover {
    transform: translateY(-6px);
    color: var(--tcp-green);
}

.tcp-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.tcp-card h2 {
    font-size: 23px;
    font-weight: 700;
}

.tcp-card p {
    color: #555;
    margin-bottom: 0;
}

.tcp-footer {
    background: var(--tcp-green-dark);
    color: white;
}