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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e0f2f7 0%, #c2e9fb 100%); /* Light blue background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%); /* Deep blue to bright blue gradient */
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between images */
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
}

.hero-image .sign-image {
    max-width: 45%; /* Adjust as needed for side-by-side display */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-image .sign-image {
        max-width: 90%; /* Stack images on small screens */
    }
}margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0056b3; /* Deep blue for headings */
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555; /* Darker grey for subtitle */
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0f2f7; /* Light blue border */
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff; /* Bright blue on hover */
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #007bff; /* Bright blue for icons */
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #0056b3; /* Deep blue for card headings */
    margin-bottom: 15px;
}

.benefit-card p {
    color: #777; /* Medium grey for card text */
    line-height: 1.7;
}

/* Comparison Section */
.comparison-section {
    background: #f0f8ff; /* Very light blue background */
    padding: 60px 40px;
    margin: 0 -40px;
    border-radius: 20px;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0056b3; /* Deep blue for headings */
    margin-bottom: 40px;
}

.comparison-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.comparison-table th {
    background: #0056b3; /* Deep blue for table header */
    color: white;
    font-weight: bold;
    padding: 20px 15px;
    text-align: left;
    border-bottom: 2px solid #004085;
}

.comparison-table td {
    padding: 15px 25px;
    border-bottom: 1px solid #e0f2f7; /* Light blue border */
    vertical-align: middle;
}

.attribute-group-header {
    background: #e6f2ff; /* Lighter blue for attribute headers */
    font-weight: bold;
    color: #0056b3;
    padding: 20px 25px !important;
    text-align: left;
}

.material-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.material-name {
    font-weight: normal;
    color: #333;
    flex-grow: 1;
    text-align: left;
}

.harvey-ball {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-left: 10px;
}

.harvey-ball.excellent {
    color: #28a745; /* Green for excellent */
}

.harvey-ball.average {
    color: #ffc107; /* Yellow for average */
}

.harvey-ball.poor {
    color: #dc3545; /* Red for poor */
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    min-width: 80px; /* Ensure consistent width for rating text */
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .main-content {
        padding: 60px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 300px; /* Adjusted for single column */
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .harvey-ball {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        padding: 0 10px;
    }
    
    .cta-section {
        margin: 60px -20px 0;
        padding: 60px 20px;
    }
    
    .comparison-section {
        margin: 0 -20px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .sign-image {
        max-width: 280px;
        border-radius: 10px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .comparison-section {
        padding: 30px 15px;
    }
    
    .comparison-table {
        min-width: 280px; /* Adjusted for single column */
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .harvey-ball {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .rating-text {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* iPhone specific optimizations */
@media (max-width: 414px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .sign-image {
        max-width: 250px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .comparison-table {
        min-width: 280px; /* Adjusted for single column */
        font-size: 0.75rem;
    }
    
    .comparison-table th {
        padding: 10px 6px;
        font-size: 0.7rem;
    }
    
    .comparison-table td {
        padding: 10px 6px;
    }
    
    .harvey-ball {
        font-size: 0.8rem;
        letter-spacing: 0px;
    }
    
    .rating-text {
        font-size: 0.65rem;
    }
}/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%); /* Bright blue to light blue gradient */
    color: white;
    padding: 80px 40px;
    text-align: center;
    margin: 80px -40px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: #0056b3; /* Deep blue for button */
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #004085; /* Even deeper blue on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0056b3; /* Deep blue for footer */
    color: white;
    text-align: center;
    padding: 30px 40px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .main-content {
        padding: 60px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 600px;
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .harvey-ball {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        padding: 0 10px;
    }
    
    .cta-section {
        margin: 60px -20px 0;
        padding: 60px 20px;
    }
    
    .comparison-section {
        margin: 0 -20px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .sign-image {
        max-width: 280px;
        border-radius: 10px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    .comparison-section {
        padding: 30px 15px;
    }
    
    .comparison-table {
        min-width: 500px;
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .harvey-ball {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .rating-text {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* iPhone specific optimizations */
@media (max-width: 414px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .sign-image {
        max-width: 250px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .comparison-table {
        min-width: 450px;
        font-size: 0.75rem;
    }
    
    .comparison-table th {
        padding: 10px 6px;
        font-size: 0.7rem;
    }
    
    .comparison-table td {
        padding: 10px 6px;
    }
    
    .harvey-ball {
        font-size: 0.8rem;
        letter-spacing: 0px;
    }
    
    .rating-text {
        font-size: 0.65rem;
    }
}



/* Footer Enhancements */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h3 {
    text-align: center;
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.product-item h4 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1.5rem !important;
}

.paypal-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    width: 100%;
    max-width: 280px;
}

.paypal-button:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .product-pricing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-item {
        padding: 1.5rem;
    }
    
    .pricing-section h3 {
        font-size: 1.5rem;
    }
    
    .paypal-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-info h3 {
        font-size: 1.2rem;
    }
    
    .product-item h4 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}



/* Custom Form Styles */
.custom-info-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.custom-info-form h5 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3c72;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input[type="text"]::placeholder {
    color: #666;
    font-style: italic;
}

/* Validation Styles */
.form-group input[type="text"].valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.form-group input[type="text"].invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.form-group input[type="text"].valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.form-group input[type="text"].invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

/* Enhanced PayPal Button Styles */
.paypal-button {
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.paypal-button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.paypal-button:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Mobile Responsiveness for Forms */
@media (max-width: 768px) {
    .custom-info-form {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .custom-info-form h5 {
        font-size: 1rem;
    }
    
    .form-group input[type="text"] {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .custom-info-form {
        padding: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group input[type="text"] {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
}


/* Dimensions Info Styles */
.dimensions-info {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.dimensions-info p {
    margin: 0.5rem 0;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
}

.dimensions-info strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile Responsiveness for Dimensions */
@media (max-width: 768px) {
    .dimensions-info {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .dimensions-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .dimensions-info {
        padding: 0.5rem;
    }
    
    .dimensions-info p {
        font-size: 0.8rem;
    }
}

