/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
    margin-top: 80px;
}

.logo {
    width: 350px;
    height: auto;
}

/* Search Section */
.search-section {
    width: 100%;
    max-width: 700px;
    margin-bottom: 50px;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    outline: none;
    transition: box-shadow 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
}

.search-input:hover,
.search-input:focus {
    box-shadow: 0 2px 8px rgba(32, 33, 36, 0.35);
}

.search-button {
    width: 30%;
    min-width: 150px;
    padding: 12px 30px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin: 0 auto;
    display: block;
}

.search-button:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.search-button:active {
    transform: translateY(0);
}

/* Icons Container */
.icons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.icons-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Icon Link */
.icon-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.icon-link:hover {
    transform: translateY(-5px);
}

/* Icon Box */
.icon-box {
    width: 180px;
    height: 180px;
    background-color: transparent;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    transition: transform 0.2s ease;
    position: relative;
    overflow: visible;
}

.icon-link:hover .icon-box {
    transform: scale(1.05);
}

.icon-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: absolute;
    transition: opacity 0.3s ease;
}

.icon-hover {
    opacity: 0;
}

.icon-link:hover .icon-normal {
    opacity: 0;
}

.icon-link:hover .icon-hover {
    opacity: 1;
}

/* Icon Label */
.icon-label {
    font-size: 16px;
    color: #000000;
    text-align: center;
    font-weight: 400;
}

/* Footer Link */
.footer-link {
    margin-top: 30px;
    margin-bottom: 30px;
}

.forte-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 14px 40px;
    border: 2px solid #000000;
    border-radius: 30px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.forte-link:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 200px;
    }

    .icons-row {
        gap: 30px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
    }

    .icon-img {
        width: 50px;
        height: 50px;
    }

    .search-section {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }

    .icons-row {
        gap: 20px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
    }

    .icon-img {
        width: 40px;
        height: 40px;
    }

    .icon-label {
        font-size: 12px;
    }
}
