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

/* Pricus Section Styling */
.pc {
    background-image: url("http://www.smagicmakers.com/images/PNGs/Headers/section - pricus.png");
    background-repeat: no-repeat;
    background-position: top center; /* Centers the image horizontally and aligns it to the top */
    background-size: contain; /* Ensures the image fits without cropping */
    background-color: #000; /* Fallback color in case the image doesn't load */
    width: 100%;
    min-height: 100vh; /* Ensures the section spans the full viewport height */
    display: flex;
    justify-content: center;
    padding: 20px; /* Adds padding inside the section */
}

/* Container for the Logo and Content */
.pc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Ensures the content doesn’t stretch too wide */
    padding: 20px;
}

/* Logo Section (moved to the right) */
.pc-logo {
    flex: 1; /* Takes up equal space as text */
    display: flex;
    justify-content: center; /* Centers logo horizontally */
    padding-left: 20px; /* Adds padding between logo and text */
}

.pc-logo img {
    max-width: 338px; /* Maintains the size of the logo */
    width: 100%; /* Ensures responsiveness */
    height: auto; /* Preserves the aspect ratio */
}

/* Text Section (moved to the left) */
.pc-text {
    flex: 1; /* Takes up equal space as the logo */
    color: white;
    font-family: 'Didact Gothic', 'Century Gothic', Verdana, sans-serif, Arial;
    text-align: left; /* Aligns text to the left */
    padding-right: 20px; /* Adds padding between text and logo */
}

/* Heading Styling */
.pc-text h2 {
    font-size: 60px; /* Matches original size */
    font-weight: 900;
    margin-bottom: 20px; /* Adds spacing below the heading */
}

/* Paragraph Styling */
.pc-text p {
    font-size: 36px; /* Matches original paragraph size */
    line-height: 1.5;
    margin-bottom: 30px; /* Adds spacing below the paragraph */
}

/* Button Styling */
.pc-text a img {
    max-width: 315px; /* Matches the button size */
    width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintains aspect ratio */
    display: inline-block;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pc-container {
        flex-direction: column; /* Stacks the logo and text vertically on medium screens */
        align-items: center;
    }

    .pc-logo img {
        max-width: 300px; /* Adjust logo size for medium screens */
    }

    .pc-text h2 {
        font-size: 50px; /* Adjust heading size */
    }

    .pc-text p {
        font-size: 32px; /* Adjust paragraph size */
    }
}

@media (max-width: 768px) {
    .pc-container {
        flex-direction: column;
        align-items: center;
    }

    .pc-logo img {
        max-width: 250px; /* Further scaling down the logo */
    }

    .pc-text h2 {
        font-size: 40px;
    }

    .pc-text p {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .pc-logo img {
        max-width: 200px; /* Further scaling for small screens */
    }

    .pc-text h2 {
        font-size: 32px;
    }

    .pc-text p {
        font-size: 24px;
    }
}
