 :root {
     --primary-green: #006933;
     --primary-yellow: #fcd006;
     --light-green: #e8f5e9;
     --dark-green: #004d26;
     --gray-bg: #f9f9f9;
     --text-dark: #333;
     --text-light: #666;
     --white: #ffffff;
     --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     --border-radius: 8px;
 }

 .footer-links li a,
 .footer-links li {
     color: #ddd;
 }

 /* Футер */
 footer {
     background-color: var(--dark-green);
     color: white;
     padding: 60px 0 30px;
 }

 .footer-content {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-column {
     flex: 1;
     min-width: 250px;
 }

 .footer-column h3 {
     font-size: 20px;
     margin-bottom: 20px;
     color: var(--primary-yellow);
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #ddd;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-links a:hover,
 .copyright {
     color: var(--primary-yellow);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #aaa;
     font-size: 14px;
 }

 .btn-outline {
     border: 2px solid var(--primary-green);
     color: var(--primary-green);
     background: transparent;
 }

 footer .btn {
     padding: 12px 24px;
     border-radius: var(--border-radius);
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     display: inline-block;
     text-align: center;
 }

 footer .btn-outline:hover {
     background-color: var(--primary-green);
     color: white;
 }

 [class*=content]:before,
 [class*=content]:after {
     content: none;
     display: table;
 }