* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f6f5;
}

.header {
    background-color: #000;
    padding: 15px 20px;
    color: white;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.affiliate-notice {
    font-size: 12px;
    color: #bbb;
}

.affiliate-notice a {
    color: #bbb;
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, #00aaff, #0078d4);
    color: white;
    padding: 60px 20px;
    position: relative;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-content .update {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
}

.hero-content .text-content {
    flex: 1;
    min-width: 300px;
}

.hero-content .content-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.hero-content .content-img img {
    max-width: 100%;
    height: auto;
}

.quick-review {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    backdrop-filter: blur(5px);
    gap: 50px;
}

.quick-review .logo img {
    max-width: 217px;
}

.quick-review .rating {
    text-align: center;
    margin: 0 20px;
}

.quick-review .rating p {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #ddd;
    width: 120px;
}

.quick-review .rating h3 {
    font-size: 24px;
    font-weight: bold;
}

.quick-review .cta-button {
    background-color: #ff3366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hosting-detail {
    max-width: 1200px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hosting-detail .logo {
    flex: 0 0 10%;
}

.hosting-detail .logo img {
    max-width: 100%;
}

.hosting-detail .info {
    flex: 0 0 35%;
}

.hosting-detail .info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.hosting-detail .info p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

.hosting-detail .features {
    flex: 0 0 25%;
}

.hosting-detail .features ul {
    list-style: none;
}

.hosting-detail .features ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
}

.hosting-detail .features ul li::before {
    content: "✔";
    color: #00cc00;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.hosting-detail .score-cta {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hosting-detail .score-cta .score-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.hosting-detail .score-cta .score-wrapper p {
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    margin-right: 5px;
}

.hosting-detail .score-cta .score-wrapper .score {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-right: 50px;
}

.hosting-detail .score-cta .cta-button {
    background-color: #00cc00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .header.header {
        display: none !important;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero .container {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content-img {
        justify-content: center;
        margin-top: 20px;
    }

    .quick-review {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 12px;
        gap: 0px !important;
    }

    .quick-review .logo img {
        max-width: 160px;
    }

    .quick-review .logo {
        flex: 0 0 auto;
        margin-bottom: 0;
    }

    .quick-review .rating {
        text-align: center;
        min-width: 120px;
        white-space: nowrap;
    }

    .quick-review .cta-button {
        flex: 0 0 auto;
        padding: 12px 20px;
        font-size: 14px;
        margin-left: 20px;
    }

    .hosting-detail {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        position: relative;
    }

    .hosting-detail .logo {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 68px;
        height: 68px;
        flex: none;
    }

    .hosting-detail .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .hosting-detail .info {
        width: 100%;
        margin-bottom: 15px;
    }

    .hosting-detail .info h2 {
        font-size: 20px;
        margin: 10px 0 29px 88px;
    }

    .hosting-detail .info p {
        font-size: 14px;
        margin: 0;
    }

    .hosting-detail .features {
        width: 100%;
        margin-bottom: 15px;
    }

    .hosting-detail .features ul li {
        font-size: 14px;
    }

    .hosting-detail .score-cta {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hosting-detail .score-cta .score-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .hosting-detail .score-cta .score-wrapper p {
        font-size: 14px;
        margin-right: 6px;
        color: #333;
    }

    .hosting-detail .score-cta .score {
        font-size: 20px;
        font-weight: bold;
        color: #333;
    }

    .hosting-detail .score-cta .cta-button {
        width: 100%;
        padding: 12px;
        text-align: center;
        font-weight: bold;
    }

    .score-wrapper {
        margin-left: 0 !important;
    }
}
