        .full-width-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            width: 100%;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .social-icon {
            color: white;
            font-size: 24px;
            margin-right: 15px;
            transition: color 0.3s;
        }

        .social-icon:hover {
            color: var(--accent-color);
        }

        .footer-icon {
            color: var(--accent-color);
            width: 20px;
            text-align: center;
            margin-right: 12px;
        }

        .footer-contact-item {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .footer-title {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
        }