body, html {
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC', sans-serif;
    color: #FFFFFF; /* Default text color from Figma */
    width: 1920px; /* Frame width from Figma */
    height: 1080px; /* Frame height from Figma */
    background-image: url('./public/images/background.png');
    background-size: cover; /* Changed from fill to cover for better general use, FILL was 3072x1119 */
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* For absolute positioning of children if needed */
    overflow: hidden; /* Prevent scrollbars if content overflows frame */
}

.container {
    /* The Figma design doesn't show a separate container like this. Styles will be applied more directly. */
    /* This class can be removed or repurposed if not needed for structure. */
    /* For now, let's assume content is directly on the body or within specific positioned elements. */
    position: absolute; /* Positioning based on Figma layout */
    left: 0; /* Adjust as per Figma if there's an overall container */
    top: 0;  /* Adjust as per Figma */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; /* This might conflict with specific positioning */
    /* align-items: center; /* This might conflict with specific positioning */
}

header {
    position: absolute; /* Positioning based on Figma layout */
    left: 160px; /* x position of K.KOLING TECH. LIMITED */
    top: 160px;  /* y position of 科科靈科技有限公司 */
}

header h1 { /* 科科靈科技有限公司 */
    font-family: 'PingFang SC';
    font-weight: 600;
    font-size: 70px;
    line-height: 1.4; /* 98px height / 70px font-size */
    color: #FFFFFF;
    text-align: center; /* As per Figma textStyle */
    margin: 0; /* Reset default margins */
    width: 630px; /* width from Figma */
    height: 98px; /* height from Figma */
}

header h2 { /* K.KOLING TECH. LIMITED */
    font-family: 'PingFang SC';
    font-weight: 600;
    font-size: 50px;
    line-height: 1.4; /* 70px height / 50px font-size */
    color: rgba(255, 255, 255, 0.5);
    text-align: center; /* As per Figma textStyle */
    margin: 0;
    position: absolute;
    top: 105px; /* 265 (y of h2) - 160 (y of header container) */
    left: -2px; /* 160 (x of h2) - 162 (x of h1, approx for centering) - this needs fine-tuning or better parent centering */
    width: 635px; /* width from Figma */
    height: 70px; /* height from Figma */
}

.contact-info { /* Group 2036089582 */
    position: absolute;
    left: 160px; /* x position from Figma */
    bottom: 250px;  /* y position from Figma */
    width: 1000px; /* width from Figma */
    height:200px; /* height from Figma */
}

.contact-item {
    display: flex;
    align-items: center;
    font-family: 'PingFang SC';
    font-weight: 500;
    font-size: 30px;
    line-height: 1.4; /* 42px height / 30px font-size */
    color: #FFFFFF;
    text-align: center; /* As per Figma textStyle */
    position: absolute; /* Children of contact-info are absolutely positioned relative to it */
}

.contact-item img { /* Frame for icon */
    width: 42px;
    height: 42px;
    margin-right: 12px; /* (54 (text x) - 0 (icon frame x) - 42 (icon width) = 12) */
}

.contact-item p {
    margin: 0;
}

/* Specific positioning for email */
.contact-item:nth-child(1) { /* Roohchat@163.com part */
    left: 0px; /* Icon Frame x is 0 relative to Group */
    top: 0px; /* Icon Frame y is 0 relative to Group */
}
.contact-item:nth-child(1) p {
    width: 285px; /* width of text from Figma */
    height: 42px; /* height of text from Figma */
}

/* Specific positioning for address */
.contact-item:nth-child(2) { /* 香港新蒲岗... part */
    left: 0px; /* Icon Frame x is 0 relative to Group */
    top: 70px; /* Icon Frame y is 70 relative to Group */
}

.contact-item:nth-child(2) p {
    width: 620px; 
    height: 42px; 
}


/* Specific positioning for address */
.contact-item:nth-child(3) {
    /* 香港新蒲岗... part */
    left: 50px;
    /* Icon Frame x is 0 relative to Group */
    top: 120px;
    /* Icon Frame y is 70 relative to Group */
}

.contact-item:nth-child(3) p {
    width: 620px;
    height: 42px;
}

