:root {
    --pp-primary: #00A8E8; /* Fresh Blue */
    --pp-secondary: #81C784; /* Eco Green */
    --pp-dark: #2D3748;    /* Dark Grey */
    --pp-light: #F7FAFC;   /* Very Light Grey */
    --pp-white: #FFFFFF;
    --pp-text: #4A5568;    /* Slate Text */
    --pp-border: #E2E8F0;
    --pp-font-head: 'Poppins', sans-serif;
    --pp-font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--pp-font-body);
    color: var(--pp-text);
    background-color: var(--pp-white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--pp-font-head);
    color: var(--pp-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Header */
.pp-header {
    background: var(--pp-white);
    border-bottom: 1px solid var(--pp-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.pp-nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pp-primary);
    gap: 10px;
}
.pp-logo img { width: 32px; height: 32px; }

.pp-menu { display: flex; gap: 30px; }
.pp-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--pp-dark);
}
.pp-menu a:hover { color: var(--pp-primary); }

/* Mobile Menu */
.pp-burger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--pp-dark); }
.pp-mobile-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--pp-white);
    border-top: 1px solid var(--pp-border);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.pp-mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--pp-light); font-weight: 600; }
.pp-mobile-nav.active { display: block; }

/* Hero Section */
.pp-hero {
    position: relative;
    height: 550px;
    background: url('https://images.pexels.com/photos/4099467/pexels-photo-4099467.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.pp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
}
.pp-hero-content {
    position: relative; z-index: 10;
    max-width: 1200px; margin: 0 auto; padding: 20px;
}
.pp-hero h1 {
    font-size: 3rem;
    color: var(--pp-primary);
    max-width: 600px;
    line-height: 1.2;
}
.pp-hero p { font-size: 1.2rem; color: var(--pp-text); max-width: 550px; margin-bottom: 30px; }
.pp-btn {
    display: inline-block;
    background: var(--pp-primary);
    color: var(--pp-white);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 168, 232, 0.3);
}
.pp-btn:hover { background: #0091CA; transform: translateY(-2px); }

/* Sections */
.pp-section { padding: 90px 20px; }
.pp-bg-light { background: var(--pp-light); }
.pp-container { max-width: 1200px; margin: 0 auto; }

.pp-title-center { text-align: center; font-size: 2.2rem; margin-bottom: 15px; color: var(--pp-dark); }
.pp-subtitle { text-align: center; color: #718096; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Grid System */
.pp-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pp-card {
    background: var(--pp-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--pp-border);
    transition: 0.3s;
}
.pp-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--pp-primary); }
.pp-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; color: var(--pp-primary); }
.pp-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pp-card p { font-size: 0.95rem; color: var(--pp-text); }

/* About Split */
.pp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pp-split-img { width: 100%; border-radius: 12px; box-shadow: 20px 20px 0px var(--pp-secondary); }

/* Form */
.pp-form-wrap {
    max-width: 650px; margin: 0 auto; background: var(--pp-white);
    padding: 40px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--pp-border);
}
.pp-group { margin-bottom: 20px; }
.pp-label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.pp-input {
    width: 100%; padding: 14px; background: var(--pp-light);
    border: 1px solid var(--pp-border); border-radius: 8px; font-family: inherit;
}
.pp-input:focus { outline: 2px solid var(--pp-primary); background: var(--pp-white); }
.pp-submit { width: 100%; border: none; cursor: pointer; }

/* Footer */
.pp-footer { background: var(--pp-dark); color: #CBD5E0; padding: 60px 20px 20px; font-size: 0.9rem; }
.pp-footer h4 { color: var(--pp-white); font-size: 1.1rem; margin-bottom: 20px; }
.pp-footer a { display: block; margin-bottom: 10px; }
.pp-footer a:hover { color: var(--pp-primary); }
.pp-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 60px; }
.pp-copy { text-align: center; border-top: 1px solid #4A5568; padding-top: 30px; font-size: 0.85rem; }

/* Cookie */
.pp-cookie {
    position: fixed; bottom: 20px; left: 20px; max-width: 380px;
    background: var(--pp-white); padding: 25px; border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); display: none; z-index: 2000;
}
.pp-cookie p { font-size: 0.9rem; margin-bottom: 15px; color: var(--pp-text); }
.pp-cookie-btn {
    background: var(--pp-primary); color: var(--pp-white); border: none;
    padding: 10px 24px; width: 100%; border-radius: 6px; cursor: pointer; font-weight: 600;
}

@media (max-width: 768px) {
    .pp-menu { display: none; }
    .pp-burger { display: block; }
    .pp-hero h1 { font-size: 2.5rem; }
    .pp-split { grid-template-columns: 1fr; gap: 40px; }
}