/* About Page Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-space_grotesk);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container-center-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.about {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: var(--white);
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.about .navigation {
    align-items: center;
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-shrink: 1;
    height: 51px;
    justify-content: flex-start;
    margin-right: 42.0px;
    margin-top: 59px;
    min-width: 1234px;
    position: relative;
    width: auto;
    margin-bottom: 60px;
}

.about .nav-logo {
    flex-shrink: 1;
    position: relative;
    height: 40px;
    width: auto;
}

.about .nav-services {
    background-color: transparent;
    flex-shrink: 1;
    font-weight: 300;
    height: auto;
    letter-spacing: 0.00px;
    line-height: 21px;
    margin-bottom: 2.0px;
    margin-left: 142px;
    min-width: 68px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: auto;
}

.about .nav-pricing {
    background-color: transparent;
    flex-shrink: 1;
    font-weight: 300;
    height: auto;
    letter-spacing: 0.00px;
    line-height: 21px;
    margin-bottom: 2.0px;
    margin-left: 41px;
    min-width: 55px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: auto;
}

.about .nav-resources {
    background-color: transparent;
    flex-shrink: 1;
    font-weight: 300;
    height: auto;
    letter-spacing: 0.00px;
    line-height: 21px;
    margin-bottom: 2.0px;
    margin-left: 42px;
    min-width: 84px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: auto;
}

.about .nav-cta-button {
    align-self: flex-start;
    background-image: url(../img/real-estate-button-backgroundmask-2.png);
    height: 50px;
    margin-left: 41px;
    overflow: hidden;
    width: 357px;
    position: relative;
}

.about .nav-cta-background {
    width: 357px;
}

.about .nav-cta-text {
    background-color: transparent;
    font-weight: 600;
    height: auto;
    left: 50%;
    letter-spacing: 1.10px;
    line-height: 21px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: auto;
}

.about .nav-cta-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.1px;
    display: block;
    width: 100%;
    padding: 16px 32px;
}

.about .nav-login-button {
    align-self: flex-start;
    background-color: transparent;
    background-image: url(../img/transactional-mail-button-backgroundmask-1@2x.png);
    background-size: 100% 100%;
    flex-shrink: 1;
    height: 50px;
    margin-left: 43px;
    overflow: hidden;
    position: relative;
    width: 143px;
}

.about .nav-login-background {
    width: 143px;
}

.about .nav-login-text {
    background-color: transparent;
    font-weight: 600;
    height: 29px;
    left: 37px;
    letter-spacing: 0.88px;
    line-height: 21px;
    position: absolute;
    text-align: center;
    top: 12px;
    width: 68px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
}

.dropdown-content li {
    display: block;
    width: 100%;
}

.dropdown-content .dropdown-item {
    display: block;
    padding: 8px 16px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-item {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

.nested-dropdown {
    position: relative;
}

.nested-dropdown > .dropdown-item {
    position: relative;
}

.nested-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2000;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    border: 1px solid #ddd;
}

.nested-dropdown-content li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nested-dropdown-item {
    color: black !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    display: block !important;
    white-space: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
    line-height: 1.5 !important;
}

.nested-dropdown-item:hover {
    background-color: #f1f1f1;
}

.nested-dropdown:hover .nested-dropdown-content {
    display: block;
}

.show-mobile {
    display: none !important;
}
.mobile-nav-toggle,
.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

.mobile-nav-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 10001 !important;
    background: white !important;
    border: 2px solid #c00000 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    padding: 12px !important;
    width: 50px !important;
    height: 50px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-nav-toggle:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important;
    border-color: #a00000 !important;
}

.hamburger {
    display: block !important;
    position: relative !important;
    width: 24px !important;
    height: 3px !important;
    background-color: #c00000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 3px !important;
}

.hamburger::before,
.hamburger::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    width: 24px !important;
    height: 3px !important;
    background-color: #c00000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 3px !important;
}

.hamburger::before { top: -8px !important; }
.hamburger::after { top: 8px !important; }

.mobile-nav-toggle.active .hamburger {
    background-color: transparent !important;
}

.mobile-nav-toggle.active .hamburger::before {
    top: 0 !important;
    transform: rotate(45deg) !important;
}

.mobile-nav-toggle.active .hamburger::after {
    top: 0 !important;
    transform: rotate(-45deg) !important;
}

.mobile-menu-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(4px) !important;
}

.mobile-menu-overlay.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 90% !important;
    max-width: 380px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    z-index: 9999 !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2) !important;
    flex-direction: column !important;
}

.mobile-menu.active {
    right: 0 !important;
}

.mobile-menu-header {
    padding: 40px 25px 25px !important;
    border-bottom: 2px solid #e9ecef !important;
    text-align: center !important;
    background: white !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.mobile-menu-header::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: #c00000 !important;
    border-radius: 2px !important;
}

.mobile-menu-logo {
    height: 50px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)) !important;
}

.mobile-menu-content {
    flex: 1 !important;
    padding: 0 !important;
}

.mobile-menu-category {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 25px 25px 15px !important;
    color: #c00000 !important;
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #c00000 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    margin: 15px 0 0 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-category::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: #c00000 !important;
}

.mobile-menu-category:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%) !important;
}

.mobile-menu-category::after {
    content: '▼' !important;
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
    color: #c00000 !important;
}

.mobile-menu-category.active::after {
    transform: rotate(180deg) !important;
}

.mobile-menu-section {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.mobile-menu-section.active {
    max-height: 500px !important;
}

.mobile-menu-item {
    display: block !important;
    padding: 18px 25px 18px 45px !important;
    color: #495057 !important;
    text-decoration: none !important;
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    border-bottom: 1px solid rgba(233, 236, 239, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.mobile-menu-item::before {
    content: '' !important;
    position: absolute !important;
    left: 32px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: #c00000 !important;
    border-radius: 50% !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-item::after {
    content: '' !important;
    position: absolute !important;
    left: -100% !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, rgba(192, 0, 0, 0.05) 0%, transparent 100%) !important;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-menu-item:hover::after {
    left: 0 !important;
}

.mobile-menu-item:hover {
    color: #c00000 !important;
    padding-left: 50px !important;
    transform: translateX(5px) !important;
}

.mobile-menu-item:hover::before {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.2) !important;
    left: 37px !important;
}

.mobile-menu-footer {
    padding: 25px !important;
    margin-top: auto !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-top: 2px solid #e9ecef !important;
    flex-shrink: 0 !important;
}

.mobile-menu-button {
    display: block !important;
    width: 100% !important;
    padding: 16px !important;
    text-align: center !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
}

.mobile-menu-button.primary {
    background-color: #c00000 !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.3) !important;
}

.mobile-menu-button.primary:hover {
    background-color: #a00000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(192, 0, 0, 0.4) !important;
}

.mobile-menu-button.secondary {
    background-color: #fff !important;
    color: #c00000 !important;
    border: 2px solid #c00000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.mobile-menu-button.secondary:hover {
    background-color: #c00000 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.3) !important;
}

.hero-section {
    padding: 80px 0;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-family-lora);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--black);
}

.hero-subtitle {
    font-family: var(--font-family-space_grotesk);
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    padding: 80px 0;
    background: var(--cararra);
    width: 100%;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-family-lora);
    font-size: 42px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 30px;
    color: var(--black);
}

.section-subtitle {
    font-family: var(--font-family-space_grotesk);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--guardsman-red);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--cararra);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-name {
    font-family: var(--font-family-lora);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 8px;
    white-space: nowrap;
}

.member-title {
    font-family: var(--font-family-space_grotesk);
    font-size: 16px;
    color: var(--guardsman-red);
    font-weight: 500;
    line-height: 1.3;
}

.company-story-section {
    padding: 80px 0;
    width: 100%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content {
    flex: 1;
}

.story-title {
    font-family: var(--font-family-lora);
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--black);
}

.story-text {
    font-family: var(--font-family-space_grotesk);
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-guarantee-section {
    padding: 80px 0;
    background: var(--cararra);
    width: 100%;
}

.quality-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0 0 0;
}

.quality-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-5px);
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: var(--guardsman-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
}

.quality-title {
    font-family: var(--font-family-lora);
    font-size: 18px;
    line-height: 1.4;
    color: var(--black);
}

.industries-section {
    padding: 80px 0;
    width: 100%;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.industries-content {
    text-align: center;
    margin-bottom: 60px;
}

.industries-intro {
    font-family: var(--font-family-space_grotesk);
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--guardsman-red);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--guardsman-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    background: #a00000;
}

.industry-card a {
    color: var(--black);
    text-decoration: none;
    font-family: var(--font-family-space_grotesk);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.industry-card:hover a {
    color: var(--guardsman-red);
}

.cta-section {
    background: var(--black);
    padding: 100px 0;
    width: 100%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-family-lora);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-family: var(--font-family-space_grotesk);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--guardsman-red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-family-space_grotesk);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 0, 0, 0.3);
}

.cta-button:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 0, 0, 0.4);
}

.cta-nav-button {
    display: inline-block;
    position: relative;
    background-image: url(../img/real-estate-button-backgroundmask-2.png);
    height: 50px;
    width: 357px;
    overflow: hidden;
    margin: 0 auto;
}

.cta-nav-background {
    width: 357px;
}

.cta-nav-text {
    background-color: transparent;
    font-weight: 600;
    height: auto;
    left: 50%;
    letter-spacing: 1.10px;
    line-height: 21px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: auto;
}

.cta-nav-text a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.1px;
    display: block;
    width: 100%;
    padding: 16px 32px;
}

.cta-button {
    display: none;
}

.about .footer {
    background-color: transparent;
    height: 300px;
    margin-top: 0;
    position: relative;
    width: 100%;
}

.about .footer-background {
    background-color: transparent;
    height: 300px;
    left: 1px;
    position: absolute;
    top: 0px;
    width: 1440px;
}

.about .footer-copyright {
    background-color: transparent;
    font-weight: 300;
    height: auto;
    left: 599px;
    letter-spacing: 0.00px;
    line-height: 23px;
    position: absolute;
    text-align: center;
    top: 250px;
    white-space: nowrap;
    width: auto;
}

.about .footer-line {
    background-color: transparent;
    height: 47px;
    left: -0px;
    position: absolute;
    top: 202px;
    width: 1443px;
}

.about .footer-links {
    background-color: transparent;
    font-weight: 400;
    height: auto;
    left: 297px;
    letter-spacing: 0.00px;
    line-height: 33px;
    position: absolute;
    text-align: left;
    top: 133px;
    white-space: nowrap;
    width: auto;
}

.about .footer-socials {
    background-color: transparent;
    font-weight: 400;
    height: auto;
    left: 1174px;
    letter-spacing: 0.00px;
    line-height: 28px;
    position: absolute;
    text-align: center;
    top: 55px;
    width: 148px;
}

.about .footer-logo {
    left: 101px;
    position: absolute;
    top: 50px;
    height: 40px;
    width: auto;
}

.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: flex !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .about {
        padding-top: 70px;
        min-width: 100%;
        width: 100%;
    }

    .about .navigation {
        display: none !important;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .team-member {
        padding: 25px 15px;
    }

    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .member-name {
        font-size: 20px;
    }

    .member-title {
        font-size: 14px;
    }

    .company-story-section {
        padding: 60px 0;
    }

    .story-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .story-title {
        font-size: 28px;
        text-align: center;
    }

    .story-image {
        height: 300px;
    }

    .quality-guarantee-section {
        padding: 60px 0;
    }

    .quality-container {
        padding: 0 20px;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industries-section {
        padding: 60px 0;
    }

    .industries-container {
        padding: 0 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .about .footer {
        margin-top: 0;
        height: auto;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 40px 20px !important;
        background-color: var(--cararra) !important;
    }

    .about .footer > * {
        position: static !important;
        margin: 0 0 25px 0 !important;
        text-align: center !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
    }

    .about .footer .footer-background,
    .about .footer .footer-line {
        display: none !important;
    }

    .about .footer .footer-copyright {
        order: 1 !important;
        margin-bottom: 25px !important;
    }

    .about .footer .footer-links {
        order: 2 !important;
        font-size: 0 !important;
        line-height: 1 !important;
        margin-bottom: 25px !important;
    }

    .about .footer .footer-socials {
        order: 3 !important;
        width: auto !important;
        margin-bottom: 25px !important;
    }

    .about .footer .footer-logo {
        order: 4 !important;
        margin-bottom: 0 !important;
        position: static !important;
        max-width: 150px;
        height: auto;
    }

    .about .footer .footer-links a {
        display: block !important;
        font-size: 18px !important;
        padding: 8px 0 !important;
        color: var(--black, #000);
        text-decoration: none;
        font-family: var(--font-family-lora);
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member {
        padding: 20px 10px;
    }

    .member-image {
        width: 100px;
        height: 100px;
    }

    .member-name {
        font-size: 18px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }

    .about .footer {
        padding: 30px 15px !important;
    }

    .about .footer .footer-links a {
        font-size: 16px !important;
    }
}