.footer {
    background-color: #074d93;
    color: white;
    padding: 3.333rem 1.667rem; /* 48px 24px converted to rem */
}

.footer-container {
    max-width: 87.5rem; /* 1260px converted to rem */
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: 1fr; */
    gap: 2.222rem; /* 32px converted to rem */
    margin-bottom: 2.222rem; /* 32px converted to rem */
}

@media (min-width: 64rem) {
    /* 1024px converted to rem */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company Info Section */
.company-info {
    grid-column: span 1;
}

.company-header {
    margin-bottom: 1.667rem; /* 24px converted to rem */
}

.logo {
    font-size: 2.5rem; /* 36px converted to rem */
    font-weight: bold;
    margin-bottom: 1.111rem; /* 16px converted to rem */
}

.company-name {
    font-size: 1.389rem; /* 20px converted to rem */
    font-weight: 600;
    margin-bottom: 2.222rem; /* 32px converted to rem */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.111rem; /* 16px converted to rem */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.833rem; /* 12px converted to rem */
}

.icon {
    width: 1.389rem; /* 20px converted to rem */
    height: 1.389rem; /* 20px converted to rem */
    margin-top: 0.278rem; /* 4px converted to rem */
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
}

/* Footer Columns */
.footer-column {
    grid-column: span 1;
}

.column-title {
    font-size: 1.389rem; /* 20px converted to rem */
    font-weight: 600;
    margin-bottom: 0.556rem; /* 8px converted to rem */
}

.underline {
    width: 6.875rem;
    margin-bottom: 1.667rem; /* 24px converted to rem */
}

.column-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.833rem; /* 12px converted to rem */
}

.column-list li {
    line-height: 1.5;
}

/* Email Form */
.email-form {
    display: flex;
    gap: 0.556rem; /* 8px converted to rem */
    margin-bottom: 1.667rem; /* 24px converted to rem */
}

.email-input {
    flex: 1;
    padding: 0.833rem 1.111rem; /* 12px 16px converted to rem */
    border-radius: 0.278rem; /* 4px converted to rem */
    background-color: white;
    color: #374151;
    border: none;
    outline: none;
}

.email-input::placeholder {
    color: #6b7280;
}

.submit-btn {
    background-color: #007bc1;
    color: white;
    padding: 0.833rem 1.667rem; /* 12px 24px converted to rem */
    border-radius: 0.278rem; /* 4px converted to rem */
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #416eaf;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.833rem; /* 12px converted to rem */
}

.social-icon {
    width: 2.778rem; /* 40px converted to rem */
    height: 2.778rem; /* 40px converted to rem */
    border-radius: 0.278rem; /* 4px converted to rem */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon svg {
    width: 1.389rem; /* 20px converted to rem */
    height: 1.389rem; /* 20px converted to rem */
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.youtube {
    background-color: #f42929;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.twitter {
    background-color: #000000;
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.667rem; /* 24px converted to rem */
}

.copyright p {
    text-align: center;
    font-size: 0.972rem; /* 14px converted to rem */
}

/* Responsive adjustments */
@media (max-width: 48rem) {
    /* 768px converted to rem */
    .footer {
        padding: 2.222rem 1.111rem; /* 32px 16px converted to rem */
    }

    .logo {
        font-size: 2.222rem; /* 32px converted to rem */
    }

    .company-name {
        font-size: 1.25rem; /* 18px converted to rem */
    }

    .column-title {
        font-size: 1.25rem; /* 18px converted to rem */
    }
}
